3 lines
109 B
Plaintext
3 lines
109 B
Plaintext
|
echo -e 'test\\\nbest' | (read reply; echo "$reply")
|
||
|
echo -e 'test\\\nbest' | (read -r reply; echo "$reply")
|