I have a directory with about 2000 files. How can I select a random sample of N files through using either a bash script or a list of piped commands?
N
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
1.4m articles
1.4m replys
5 comments
57.0k users