diff options
author | 2024-03-25 16:43:09 +0530 | |
---|---|---|
committer | 2024-03-25 16:43:09 +0530 | |
commit | a62114c91f2070c8c8453d117f3d81dc113e41ff (patch) | |
tree | f266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/genpass/genpass-monkey | |
parent | af120ab348f2e1a5a39dec035ed9dcf84189a64e (diff) | |
download | dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2 dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip |
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/genpass/genpass-monkey')
-rwxr-xr-x | zsh/oh-my-zsh/plugins/genpass/genpass-monkey | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/zsh/oh-my-zsh/plugins/genpass/genpass-monkey b/zsh/oh-my-zsh/plugins/genpass/genpass-monkey deleted file mode 100755 index 94ff5e1..0000000 --- a/zsh/oh-my-zsh/plugins/genpass/genpass-monkey +++ /dev/null @@ -1,32 +0,0 @@ -#!/usr/bin/env zsh -# -# Usage: genpass-monkey [NUM] -# -# Generate a password made of 26 alphanumeric characters -# with the security margin of at least 128 bits. -# -# Example password: nz5ej2kypkvcw0rn5cvhs6qxtm -# -# If given a numerical argument, generate that many passwords. - -emulate -L zsh -o no_unset -o warn_create_global -o warn_nested_var - -if [[ ARGC -gt 1 || ${1-1} != ${~:-<1-$((16#7FFFFFFF))>} ]]; then - print -ru2 -- "usage: $0 [NUM]" - return 1 -fi - -zmodload zsh/system || return - -{ - local -r chars=abcdefghjkmnpqrstvwxyz0123456789 - local c - repeat ${1-1}; do - repeat 26; do - sysread -s1 c || return - # There is uniform because $#chars divides 256. - print -rn -- $chars[#c%$#chars+1] - done - print - done -} </dev/urandom |