Skip to content

Instantly share code, notes, and snippets.

@sybohy
Created July 17, 2014 01:17
Show Gist options
  • Save sybohy/2c0e6cc2bc58b5633217 to your computer and use it in GitHub Desktop.
Save sybohy/2c0e6cc2bc58b5633217 to your computer and use it in GitHub Desktop.
OSX Bash Random Password Generator
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo $NEW_UUID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment