Skip to content

Instantly share code, notes, and snippets.

@xbalaji
Last active July 20, 2019 20:46
Show Gist options
  • Save xbalaji/26f0e8ec95ab6259a70b1762f33da948 to your computer and use it in GitHub Desktop.
Save xbalaji/26f0e8ec95ab6259a70b1762f33da948 to your computer and use it in GitHub Desktop.
generate aws account numbers
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