xargs - build and execute command lines from standard input
Find all *.txt file in CURRENT and SUB directories and delete them
$ find . -name *.txt | xargs rm -f
Practice
>>> THM | Linux Modules - Task 8
Practice until you can't make it wrong.
xargs - build and execute command lines from standard input
Find all *.txt file in CURRENT and SUB directories and delete them
$ find . -name *.txt | xargs rm -f
>>> THM | Linux Modules - Task 8