aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/pwgen.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-03-12 10:05:39 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-03-12 10:05:39 +1300
commit71ee07fd12df173a7bc7fd1a7479cd09986f7956 (patch)
tree413ac38ee6650175001352467efe20c8bf5cb0bd /bash/bashrc.d/pwgen.bash
parentUpdate Vim plugins (diff)
downloaddotfiles-71ee07fd12df173a7bc7fd1a7479cd09986f7956.tar.gz
dotfiles-71ee07fd12df173a7bc7fd1a7479cd09986f7956.zip
Simplify a few default value settings
Diffstat (limited to 'bash/bashrc.d/pwgen.bash')
-rw-r--r--bash/bashrc.d/pwgen.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bashrc.d/pwgen.bash b/bash/bashrc.d/pwgen.bash
index 10cd3a41..1ac80505 100644
--- a/bash/bashrc.d/pwgen.bash
+++ b/bash/bashrc.d/pwgen.bash
@@ -4,7 +4,7 @@ pwgen() {
if (($#)) ; then
command pwgen "$@"
else
- command pwgen -s -- "${PWGEN_LENGTH:-15}" "${PWGEN_COUNT:-1}"
+ command pwgen --secure -- "${PWGEN_LENGTH:-15}" "${PWGEN_COUNT:-1}"
fi
}