1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00
zsh/Functions/Example/randline

4 lines
82 B
Plaintext
Raw Normal View History

2001-04-02 14:27:23 +02:00
# get a random line from a file
integer z="$(wc -l <$1)"
sed -n $[RANDOM%z+1]p $1