ehensive, but its likely to be all you'll need to remember (if you need anything else, you can always ... t', or `/dev/stderr', file descriptor 0, 1, or 2, respectively, is checked.
-a file
True if file ex... e exists.
-f file
True if file exists and is a regular file.
-g file
True if file exists and its... ipe (FIFO).
-r file
True if file exists and is readable.
-s file
True if file exists and has a s
tate of stty is stored 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
</co... , z.b.: in der variabel username kommt "Testuser" rein, in der Variabel Passwort "kennwort" usw...
Au... 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