RosettaCodeData/Task/Statistics-Basic/Jq/statistics-basic-1.jq

5 lines
104 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# Usage: prng N width
function prng {
cat /dev/urandom | tr -cd '0-9' | fold -w "$2" | head -n "$1"
}