Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created November 19, 2022 15:11
Show Gist options
  • Select an option

  • Save webgtx/44732fd8e32335c49aeeddedc8bb9ee5 to your computer and use it in GitHub Desktop.

Select an option

Save webgtx/44732fd8e32335c49aeeddedc8bb9ee5 to your computer and use it in GitHub Desktop.
BASH - Way to read stdin
while read line
do
echo "$line"
done < "${1:-/dev/stdin}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment