red before the stty change and restored after the read. The following code will read a password into the variable secret:
<code bash>
stty_orig=`stty -g`
stty -echo
read secret
stty $stty_orig
</code>
e/index.php/t-223160.html))
Hallo!
<code>while
read line
do
echo -e "$line"
done < ./users.csv
</code... ch einfach die Möglichkeit, eine Eingabezeile von read über die Umgebungsvariable IFS (Input Field Separator) zu splitten:
<code>
IFS=";"
while read User Password Email
do
echo -e "$User $Password $