Skip to content

Instantly share code, notes, and snippets.

@gifflet
Created November 16, 2022 03:21
Show Gist options
  • Save gifflet/b440a8c28d1da00824ea22309c881103 to your computer and use it in GitHub Desktop.
Save gifflet/b440a8c28d1da00824ea22309c881103 to your computer and use it in GitHub Desktop.
Generate a random password
cat /dev/urandom | tr -dc A-Za-z0-9 | head -c 32 ; echo ' '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment