diff options
author | June McEnroe <programble@gmail.com> | 2015-01-16 12:01:13 -0500 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2015-01-16 12:01:13 -0500 |
commit | 764c3cd7c568a644c70ca7744e16786567a4d077 (patch) | |
tree | 1606517903b8469d838551883170634775949a02 | |
parent | Add vim-signature plugin (diff) | |
download | src-764c3cd7c568a644c70ca7744e16786567a4d077.tar.gz src-764c3cd7c568a644c70ca7744e16786567a4d077.zip |
Add more bytes to randpasswd and use URL base64
-rw-r--r-- | .zsh/aliases.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.zsh/aliases.zsh b/.zsh/aliases.zsh index 00ba1d57..c1490bf5 100644 --- a/.zsh/aliases.zsh +++ b/.zsh/aliases.zsh @@ -20,7 +20,7 @@ function vman { vim -c "SuperMan $*" || echo "No manual entry for $*" } -alias randpasswd='openssl rand -base64 12' +alias randpasswd='openssl rand -base64 21 | tr +/ -_' alias killlall='killall' which ripl &> /dev/null && alias irb='ripl' |