Ich versuche, die Ausgabe eines Befehls in Bash mit einem zu lesen while loop. while read -r line do echo "$line" done <<< $(find . -type f) Die Ausgabe habe ich bekommen ranveer@ranveer:~/tmp$ bash test.sh ./test.py ./test1.py ./out1 ./test.sh ./out ./out2 ./hello ranveer@ranveer:~/tmp$...