Skip to content

Instantly share code, notes, and snippets.

@sonkol
Created July 22, 2024 14:22
Show Gist options
  • Save sonkol/c10271e7046ed2267dda22c28cb34f9d to your computer and use it in GitHub Desktop.
Save sonkol/c10271e7046ed2267dda22c28cb34f9d to your computer and use it in GitHub Desktop.
Generate random 4 digit numbers
cat /dev/urandom | tr -cd "0-9" | head -c 60 | sed "s/.\{4\}/&\n/g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment