Eu estou tentando ler a saída de um comando no bash usando a while loop. while read -r line do echo "$line" done <<< $(find . -type f) A saída que eu recebi ranveer@ranveer:~/tmp$ bash test.sh ./test.py ./test1.py ./out1 ./test.sh ./out ./out2 ./hello ranveer@ranveer:~/tmp$ Depois...