mirror of
https://github.com/sheumann/hush.git
synced 2025-01-08 03:30:42 +00:00
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")
|