Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created June 1, 2020 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinisil/f7bfe0a215d7ca42b63327a6ef164391 to your computer and use it in GitHub Desktop.
Save infinisil/f7bfe0a215d7ca42b63327a6ef164391 to your computer and use it in GitHub Desktop.
#!/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