pash: Set LC_ALL=C during password generation
This commit is contained in:
parent
374c9bb246
commit
5bc40a5eef
2
pash
2
pash
|
@ -12,7 +12,7 @@ pw_add() {
|
|||
#
|
||||
# The 'dd' command is then used to read only the desired
|
||||
# password length.
|
||||
pass=$(tr -dc "${PASH_PATTERN:-_A-Z-a-z-0-9}" </dev/urandom |
|
||||
pass=$(LC_ALL=C tr -dc "${PASH_PATTERN:-_A-Z-a-z-0-9}" < /dev/urandom |
|
||||
dd ibs=1 obs=1 count="${PASH_LENGTH:-50}" 2>/dev/null)
|
||||
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue