5 lines
99 B
Plaintext
5 lines
99 B
Plaintext
|
echo 'test\
|
||
|
best' | (read reply; echo "$reply")
|
||
|
echo 'test\
|
||
|
best' | (read -r reply; echo "$reply")
|