Created
June 1, 2020 02:43
-
-
Save infinisil/1a57845ee3ea213eec5c9f3ee5874847 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
# This works: | |
while read input; do | |
echo "$input" | |
done <<< "foo | |
bar" | |
# This exits after the first entry! | |
while read input; do | |
ssh localhost echo "$input" | |
done <<< "baz | |
qux" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment