aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/bin/makepass2
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;
}