blob: f57d1884b5233fe05a88d44d1fcc18a8c14eb99f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# Set some defaults for pwgen(1), because its defaults are to give me a long
# list of relatively short passwords, when I generally want only one good one
pwgen() {
if (($#)) ; then
command pwgen "$@"
else
command pwgen --secure -- "${PWGEN_LENGTH:-15}" "${PWGEN_COUNT:-1}"
fi
}
|