i have a file "myfile.txt" that have the next content:
hola mundo
hello word
and i want work with every line
for i in `cat myfile.txt`; do echo $i; done
i hope this give me
hola mundo
hello word
firts one line, then the other, but get
hola
mundo
hello
word
as I can demanding results until newline instead of each space?
ty all