Skip to content

Instantly share code, notes, and snippets.

@the-eric-kwok
Created March 4, 2018 15:03
Show Gist options
  • Save the-eric-kwok/b64a5a14b2471575c1a746d60fd604a7 to your computer and use it in GitHub Desktop.
Save the-eric-kwok/b64a5a14b2471575c1a746d60fd604a7 to your computer and use it in GitHub Desktop.
*nix password generator
#!/bin/bash
l=$1
[ "$l" == "" ] && l=16
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment