Created
February 12, 2024 16:31
-
-
Save jon-stewart/6e44aca4e678059c7dad91c4d61df671 to your computer and use it in GitHub Desktop.
Bash Loop Stdout (can never remember this)
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
<command> | | |
while IFS= read -r line ; | |
do | |
echo $line; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment