/ Published in: Bash
bash, read, line
- $ cat myFile | readByLine
- $ readByLine
Expand |
Embed | Plain Text
while read line; do echo $line done # or while read line; do echo $line done < myFile
You need to login to post a comment.
