Skip to content

Instantly share code, notes, and snippets.

@edernucci
Created August 22, 2019 02:06
Show Gist options
  • Save edernucci/aca3749a43014b1895678e29b47a2947 to your computer and use it in GitHub Desktop.
Save edernucci/aca3749a43014b1895678e29b47a2947 to your computer and use it in GitHub Desktop.
Very good license plate generation on bash (brazilian model)
#!/bin/bash
for i in {1..10} # change to how much data you want
do
echo $(cat /dev/urandom | tr -dc 'A-Z' | fold -w 3 | head -n 1 )-$(cat /dev/urandom | tr -dc '0-9' | fold -w 4 | head -n 1)
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment