In bash on Mac OSX, I have a file (test case) containing lines
x xx xxx xxx xx x
But when I execute the command
for i in `cat r.txt`; do echo "$i"; done
the result is not
x xx xxx xxx xx x
as I want, but rather
x xx xxx xxx xx x
How to make the echo give me "x xx xxx"?
atheaos
source share