Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Created September 8, 2017 11:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgamblin/63f2225eba5940017dbc597347a425ac to your computer and use it in GitHub Desktop.
Save jgamblin/63f2225eba5940017dbc597347a425ac to your computer and use it in GitHub Desktop.
Generate Every SSN
#!/bin/bash
for X in {0..9}{0..9}{0..9}-{0..9}{0..9}-{0..9}{0..9}{0..9}{0..9}
do echo $X
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment