Difference between revisions of "Talk:Random Strong Password Generator"
From SME Server
Jump to navigationJump to search (Undo revision 32253 by RequestedDeletion (talk)) |
m (removed debug ARG) |
||
Line 1: | Line 1: | ||
==Original code (/usr/bin/randpw)== | ==Original code (/usr/bin/randpw)== | ||
#!/bin/bash | #!/bin/bash | ||
− | + | if [[ ! $1 =~ ^[0-9]+$ ]]; then | |
− | if [[ ! $ | ||
echo "Invalid argument. Argument must be a positive number.";echo | echo "Invalid argument. Argument must be a positive number.";echo | ||
echo "Usage: randpw [n]";echo | echo "Usage: randpw [n]";echo | ||
Line 11: | Line 10: | ||
fi | fi | ||
exit 0 | exit 0 | ||
+ | |||
+ | * Nov 7. 2016 - Removed debug ARG variable |
Revision as of 07:04, 7 November 2016
Original code (/usr/bin/randpw)
#!/bin/bash if [[ ! $1 =~ ^[0-9]+$ ]]; then echo "Invalid argument. Argument must be a positive number.";echo echo "Usage: randpw [n]";echo logger -i ERROR: no positive integer provided, no password generated -t randpw else < /dev/urandom tr -dc '_A-Z-a-z-0-9!?@+[](){}~<>*%^&#+=\.$:;,-' | head -c${1:-$1};echo; exit 0 fi exit 0
- Nov 7. 2016 - Removed debug ARG variable