-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC1038
Joachim Ansorg edited this page Nov 12, 2021
·
3 revisions
while IFS= read -r line
do
printf "%q\n" "$line"
done <<(curl -s http://example.com)
while IFS= read -r line
do
printf "%q\n" "$line"
done < <(curl -s http://example.com)
You are using <<(
which is an invalid construct.
You probably meant to redirect <
from process substitution <(..)
instead. To do this, a space is needed between the <
and <(..)
, i.e. < <(cmd)
.
None.