Move p to file and add interactive selection
[khome.git] / home / bin / randline
CommitLineData
d061650f
SK
1#! /usr/bin/awk -f
2
3BEGIN {srand()}
4
5{lines[n++] = $0}
6
7END {print lines[int(n * rand())]}
This page took 0.049047 seconds and 4 git commands to generate.