Tagged Questions
11
votes
6answers
5k views
Randomly Pick Lines From a File Without Slurping It With Unix
I have a 10^7 lines file, in which I want to choose 1/100 of lines randomly
from the file. This is the AWK code I have, but it slurps all the file content
before hand. My PC memory cannot handle such ...
4
votes
7answers
935 views
How can I get exactly n random lines from a file with Perl?
Following up on this question, I need to get exactly n lines at random out of a file (or stdin). This would be similar to head or tail, except I want some from the middle.
Now, other than looping ...