Skip to content

Instantly share code, notes, and snippets.

@rnelson
Created January 6, 2019 15:45
Show Gist options
  • Save rnelson/5e53f6a11777559faa4c297d18c56103 to your computer and use it in GitHub Desktop.
Save rnelson/5e53f6a11777559faa4c297d18c56103 to your computer and use it in GitHub Desktop.
#!/bin/ksh
# Cobbled together using https://www.romanzolotarev.com/random.html
# and https://docstore.mik.ua/orelly/unix3/korn/appb_11.htm
CHARS=' -~'
SIZE=20
USAGE="as#"
while getopts "$USAGE" opt; do
case $opt in
a) CHARS='[:alnum:]' ;;
s) SIZE=$OPTARG
esac
done
tr -cd "$CHARS" < /dev/urandom | fold -w $SIZE | head -n 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment