Open sjroe opened 4 years ago
echo -e by definition enables the interpretation of backslash escapes. This was to allow to use of \n within the echo commands.
echo -e
\n
echo
The downside to this is any backslashes within the $credpassword variable also get interpreted corrupting the password.
$credpassword
This change allows backslashes to be used within the $credpassword variable.
@diablodale seems reasonable, thoughts?
echo -e
by definition enables the interpretation of backslash escapes. This was to allow to use of\n
within theecho
commands.The downside to this is any backslashes within the
$credpassword
variable also get interpreted corrupting the password.This change allows backslashes to be used within the
$credpassword
variable.