dotfiles2/base/bin/genpw

18 lines
257 B
Plaintext
Raw Normal View History

2022-08-06 05:16:17 +00:00
#!/bin/sh
2024-05-11 00:07:23 +00:00
if [ "$1" = "-n" ] ; then
template='[:alnum:]'
shift
else
template='[:alnum:]+=\-_'
fi
2022-08-06 05:16:17 +00:00
if [ -z "$1" ] ; then
2024-05-11 00:07:23 +00:00
echo "usage: $0 [-n] length" >&2
2022-08-06 05:16:17 +00:00
exit 1
fi
2024-05-11 00:07:23 +00:00
LC_ALL=C tr -dc "$template" </dev/urandom | \
2022-08-06 05:16:17 +00:00
fold -w$1 | head -n1