Created
September 15, 2012 03:09
-
-
Save dtrailin/3726204 to your computer and use it in GitHub Desktop.
A password generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| list=`echo {0..9}` | |
| for c1 in $list | |
| do | |
| for c2 in $list | |
| do | |
| for c3 in $list | |
| do | |
| for c4 in $list | |
| do | |
| for c5 in $list | |
| do | |
| for c6 in $list | |
| do | |
| echo 000$c1$c2$c3$c4$c5$c6 | |
| done | |
| done | |
| done | |
| done | |
| done | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment