We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
I know this is a beginner-level challenge, but I'm surprised the test cases are so kind. The echo command does not emit all its input completely literally—it will transform escaped characters, for example. And feeding the input through read and then double-quoted string can mangle things too.
A Personalized Echo
You are viewing a single comment's thread. Return to all comments →
I know this is a beginner-level challenge, but I'm surprised the test cases are so kind. The
echo
command does not emit all its input completely literally—it will transform escaped characters, for example. And feeding the input throughread
and then double-quoted string can mangle things too.