Created
September 3, 2021 06:18
-
-
Save SimonLeeGit/92e5f94358d958e994777a508a78b44b to your computer and use it in GitHub Desktop.
How to read file line by line in Bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ while read line; do echo $line; done < company.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment