vote up 1 vote down star
2

I have a directory with 2000 files or so. I want a script or a list of piped commands that will allow me to select a random sample of N files.

flag

2 Answers

vote up 5 vote down check

Does this work? I don't use Bash, but a quick Google search gave me this link:

http://benjisimon.blogspot.com/2008/05/bash-shell-hack-picking-random-set-of.html

link|flag
No need to take $RANDOM modulo 1000; just use $RANDOM---with $RANDOM modulo 1000 there will definitely be duplicates with 2000 files. – Norman Ramsey Jan 5 '09 at 19:23
I told him it wasn't mine, it's something he could use as a starting point. =) – EdgarVerona Jan 5 '09 at 20:11
vote up 2 vote down

Here's a script that uses GNU sort's random option:

ls |sort -R |tail -$N |while read file; do
    # Something involving $file, or you can leave
    # off the while to just get the filenames
done
link|flag
Cool, didn't know sort -R; I used bogosort previously :-p – alex Jan 5 '09 at 21:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.