Skip to content

Instantly share code, notes, and snippets.

@ppdouble
Created June 27, 2023 16:22
Show Gist options
  • Save ppdouble/bc115d0c031d9ee490e81062b4c20ae4 to your computer and use it in GitHub Desktop.
Save ppdouble/bc115d0c031d9ee490e81062b4c20ae4 to your computer and use it in GitHub Desktop.
Create 32 length random String in bash
cat /dev/urandom | tr -cd 'a-zA-Z0-9' | head -c 32 | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment