Я пытаюсь прочитать вывод команды в Bash, используя while loop. while read -r line do echo "$line" done <<< $(find . -type f) На выходе я получил ranveer@ranveer:~/tmp$ bash test.sh ./test.py ./test1.py ./out1 ./test.sh ./out ./out2 ./hello ranveer@ranveer:~/tmp$ После этого я попробовал...