From 8b4423b5851ff89a68225e1ce2a4a087d77569fe Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Wed, 23 May 2018 11:54:59 +0200 Subject: no more quotes in passwords --- bin/bin/makepass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3