Найти файлы и выполнить действия над ними
find ./ -type f -name "*.txt" -exec gedit "{}" \;
или
find . -type f -name "*.txt" -print0 | xargs -0 gedit
find ./ -type f -name "*.txt" -exec gedit "{}" \;
или
find . -type f -name "*.txt" -print0 | xargs -0 gedit
find . -type f | wc -l
find . -exec touch -t202404121345 "{}" \;