7 ms·
Or seq -f %04g 1 10
by willthames 11y ago
Or
seq -f %04g 1 10
- natch 11y agoSure seq is OK, but jot does everything seq does and more, so I prefer jot. # generate 10 random numbers between 1 and 1 million jot -r 10 1 1000000
- anc84 11y agoI meant to go all "just use coreutils, there is shuf available already, no need for some third-party tool" but then I realised that jot is an integral part of BSD. Rock on! :) For us Linuxers: shuf -i 1-1000000 -n 10