Skip to content

Instantly share code, notes, and snippets.

@biaocy
Last active April 6, 2023 12:09
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 biaocy/28291db7dbc0b06dcb1d9e6552279435 to your computer and use it in GitHub Desktop.
Save biaocy/28291db7dbc0b06dcb1d9e6552279435 to your computer and use it in GitHub Desktop.
linux generate 32 length alphanumeric string
cat /dev/urandom | tr -cd 'a-zA-Z0-9' | fold -w 32 | head -n 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment