How to read a linux file line by line

Closed
anonymous - Updated on Mar 30, 2018 at 04:55 PM
xpcman Posts 19530 Registration date Wednesday October 8, 2008 Status Contributor Last seen June 15, 2019 - Mar 30, 2018 at 05:45 PM
Hi!
thank you for the example

while read line; do echo "$ line \n"; done < file.txt

you should correct the $ line without space, and it works great.
I did it.

while read line; do echo "$line \n"; done < file.txt

thanks!
Related:

1 response

xpcman Posts 19530 Registration date Wednesday October 8, 2008 Status Contributor Last seen June 15, 2019 1,826
Mar 30, 2018 at 05:45 PM
thanks for the info
0