/ Published in: Bash
Example code would remove all files/folders recursively starting from the current folder named file_name
Expand |
Embed | Plain Text
$ rm -rf `find . -type d -name file_name`
You need to login to post a comment.
Example code would remove all files/folders recursively starting from the current folder named file_name
$ rm -rf `find . -type d -name file_name`
You need to login to post a comment.