Refactor wallpaper_shuffle
[khome.git] / home / bin / randline
1 #! /usr/bin/awk -f
2
3 BEGIN {srand()}
4
5 {lines[n++] = $0}
6
7 END {print lines[int(n * rand())]}
This page took 0.067689 seconds and 4 git commands to generate.