Skip to content

Instantly share code, notes, and snippets.

@timhodson
Created October 13, 2017 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timhodson/eb4af679ba254a86a7e612a8b9b19ad6 to your computer and use it in GitHub Desktop.
Save timhodson/eb4af679ba254a86a7e612a8b9b19ad6 to your computer and use it in GitHub Desktop.
While loop reading a file example
# for each line read of the file
while read line
do
echo "$line"
done < input_file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment