diff options
-rwxr-xr-x | bin/bin/makepass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bin/makepass b/bin/bin/makepass index c7ec5d6..2b48456 100755 --- a/bin/bin/makepass +++ b/bin/bin/makepass @@ -28,7 +28,7 @@ function makepass { done; for i in {1..5}; do [ "$1" = "" ] && l=$(shuf -i 16-64 -n 1) - < /dev/urandom tr -dc '!"#$%&/()=?+-_,.;:<>[]{}|\@*^A-Z-a-z-0-9' | head -c${1:-$l};echo; + < /dev/urandom tr -dc '!#$%&/()=?+-_,.;:<>[]{}|\@*^A-Z-a-z-0-9' | head -c${1:-$l};echo; done; } |