Add JetBrains tools paths to PATH
[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.056341 seconds and 4 git commands to generate.