(no title)
entire-name | 4 years ago
For documentation purposes, this is the exact thing I tried to run:
$ < <(echo hi) while read a; do echo "got $a"; done
-bash: syntax error near unexpected token `do'
$ while read a; do echo "got $a"; done < <(echo hi)
got hi
Maybe there is another way...
JNRowe|4 years ago
fiddlerwoaroof|4 years ago