diff --git a/.bash.d/functions.sh b/.bash.d/functions.sh index 90c4fcdc..e1a921df 100644 --- a/.bash.d/functions.sh +++ b/.bash.d/functions.sh @@ -18,7 +18,7 @@ # ============================================================================ # pass(){ - read -s -p 'password: ' PASSWORD + read -r -s -p 'password: ' PASSWORD echo export PASSWORD } @@ -55,4 +55,3 @@ findpy(){ find "${@:-.}" -type f -iname '*.py' -o -iname '*.jy' | grep -vf ~/code_regex_exclude.txt } -