Blame


1 7a2f6b37 2025-03-14 boredpast #!/bin/sh
2 7a2f6b37 2025-03-14 boredpast # generate passwordssss
3 7a2f6b37 2025-03-14 boredpast length=40
4 7a2f6b37 2025-03-14 boredpast [ "$#" -gt 1 ] && { echo "usage: ${0##*/} [length]" 1>&2; exit 1; }
5 7a2f6b37 2025-03-14 boredpast [ "$#" -eq 1 ] && length=$1
6 7a2f6b37 2025-03-14 boredpast jot -rcs '' "$length" 32 126