Last active
December 10, 2022 15:52
-
-
Save smashism/8068e42ecd3d0374707f0bf583d3ea83 to your computer and use it in GitHub Desktop.
random_sn
This file contains 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
randomsn() { | |
managed_python3 -c "import string; from random import randint, sample; print('VM' + ''.join(sample((string.ascii_lowercase + string.digits),10)))" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
could also do