We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
< <(cmd)
<<(cmd)
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.
There was an error while loading. Please reload this page.