Recursive delete in Linux
To recursively delete a file in Linux use something like the following:
find . -name file.ext -exec rm {} \;
It works by using the find command and then the -exec parameter to execute the rm command. find actually does the folder recursion.
|