3 lines
109 B
Plaintext
Raw Normal View History

echo -e 'test\\\nbest' | (read reply; echo "$reply")
echo -e 'test\\\nbest' | (read -r reply; echo "$reply")