Skip to content

Instantly share code, notes, and snippets.

@flavioarcega
Created May 14, 2020 19:33
Show Gist options
  • Save flavioarcega/247a5c50372b84eeda45006e1fb75fed to your computer and use it in GitHub Desktop.
Save flavioarcega/247a5c50372b84eeda45006e1fb75fed to your computer and use it in GitHub Desktop.
Bash
# explicação em https://meleu.sh/percorrer-arquivo/
while IFS= read -r linha || [[ -n "$linha" ]]
do
echo "$linha"
done < "$arquivo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment