1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00
zsh/Functions/Misc/randline
1999-06-08 09:26:01 +00:00

4 lines
82 B
Plaintext
Executable File

# get a random line from a file
integer z="$(wc -l <$1)"
sed -n $[RANDOM%z+1]p $1