## Example Script ```sh #!/usr/bin/env bash while read LINE; do echo “$LINE” done < <(echo hello) ``` ## Expected Result $ hello ## Actual Result line 5: /dev/fd/62: No such file or directory ## References 1. http://www.gnu.org/software/bash/manual/html_node/Process-Substitution.html#Process-Substitution 2. https://stackoverflow.com/a/2443120
Example Script
Expected Result
Actual Result
References