Difference between revisions of "Talk:Random Strong Password Generator"
From SME Server
Jump to navigationJump to searchm (removed debug ARG) |
m |
||
Line 1: | Line 1: | ||
− | ==Original code (/usr/bin/randpw)== | + | ==Original code (/usr/bin/randpw) and changelog== |
#!/bin/bash | #!/bin/bash | ||
if [[ ! $1 =~ ^[0-9]+$ ]]; then | if [[ ! $1 =~ ^[0-9]+$ ]]; then | ||
Line 11: | Line 11: | ||
exit 0 | exit 0 | ||
+ | ==Changelog== | ||
* Nov 7. 2016 - Removed debug ARG variable | * Nov 7. 2016 - Removed debug ARG variable |
Revision as of 07:10, 7 November 2016
Original code (/usr/bin/randpw) and changelog
#!/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
Changelog
- Nov 7. 2016 - Removed debug ARG variable