DEV Community

Discussion on: Write a simple but impactful script

Collapse
 
vguarnaccia profile image
Vincent Guarnaccia • Edited
seq --equal-width 0 1 9999 | sort --random-sort > result.txt
Collapse
 
vguarnaccia profile image
Vincent Guarnaccia • Edited

Easier to read and works with embedded Linux systems (BusyBox):

seq -w 0 1 9999 | shuf > result.txt