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