read/-r
This commit is contained in:
parent
dce638fcbd
commit
948e22d64f
2 changed files with 2 additions and 2 deletions
2
cs
2
cs
|
@ -25,7 +25,7 @@ case "${action}" in
|
||||||
if [ "${1}" ]; then
|
if [ "${1}" ]; then
|
||||||
if [ "${action}" == "${ACTION_OPEN}" ]; then
|
if [ "${action}" == "${ACTION_OPEN}" ]; then
|
||||||
echo -n 'PassPhrase: '
|
echo -n 'PassPhrase: '
|
||||||
read -s pass_phrase
|
read -r -s pass_phrase
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
for container in "${@}"; do
|
for container in "${@}"; do
|
||||||
|
|
2
cs.old
2
cs.old
|
@ -25,7 +25,7 @@ case "${action}" in
|
||||||
if [ "${1}" ]; then
|
if [ "${1}" ]; then
|
||||||
if [ "${action}" == "${ACTION_OPEN}" ]; then
|
if [ "${action}" == "${ACTION_OPEN}" ]; then
|
||||||
echo -n 'PassPhrase: '
|
echo -n 'PassPhrase: '
|
||||||
read -s pass_phrase
|
read -r -s pass_phrase
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
for container in "${@}"; do
|
for container in "${@}"; do
|
||||||
|
|
Loading…
Reference in a new issue