/ Published in: Bash
Read and process the output of a command one row at a time
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
while read -r ROW do echo $ROW done < <(command)