This tool picks one or more random lines from a file (or anything else you pass to it).
$ randline < /usr/share/dict/words
Urania
$ randline 3 < /usr/share/dict/words
foolhardiness
rhinoscopic
wormhoodThis tool uses reservoir sampling to select the random lines; in particular Algorithm L.
I wrote it as a way to understand how reservoir sampling works, and to try using Rust generics.
Although the final tool only deals with strings, the underlying reservoir_sample can sample iterators of any type.
You can download compiled binaries from the GitHub releases.
Alternatively, you can install from source. You need Rust installed; I recommend using Rustup. Then clone this repository and compile the code:
$ git clone "https://github.com/alexwlchan/randline.git"
$ cd randline
$ cargo install --path .You need to pipe input to randline.
If you don't pass an argument, it will print a single random line.
$ randline < /usr/share/dict/words
blithenYou can choose the number of random lines to print by passing a single argument k:
$ randline 3 < /usr/share/dict/words
unprofessed
ragout
TarpeiaYou can also pipe the output of another command to it, for example if I wanted to find 5 random words starting with 'a':
$ grep '^a' /usr/share/dict/words | randline 5
approachabl
autecological
alogical
ambrain
anticonstitutionallyMIT.