Last active
July 20, 2019 20:46
-
-
Save xbalaji/26f0e8ec95ab6259a70b1762f33da948 to your computer and use it in GitHub Desktop.
generate aws account numbers
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
import random | |
for ix in range(10): | |
print('"{}"'.format("".join([str(random.randrange(10)) for ix in range(12)]))) | |
# execute this program like: | |
# wget -q -O - "https://gist.githubusercontent.com/xbalaji/26f0e8ec95ab6259a70b1762f33da948/raw/gen_aws_account_no.py" | python - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment