mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
6 lines
98 B
Awk
6 lines
98 B
Awk
BEGIN {
|
|
srand(2)
|
|
for (i = 0; i < 19; i++)
|
|
printf "%3d ", (1 + int(100 * rand()))
|
|
print ""
|
|
}
|