Skip to content

Instantly share code, notes, and snippets.

@MVesuviusC
Last active April 7, 2022 19:34
Show Gist options
  • Save MVesuviusC/043b7a7e782bcf26ef8752a07cb730bc to your computer and use it in GitHub Desktop.
Save MVesuviusC/043b7a7e782bcf26ef8752a07cb730bc to your computer and use it in GitHub Desktop.
Bash - Loop through file line by line
while read line
do
echo "$line"
done < misc/inputfile.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment