How can I remove all .swp files in all of my subdirectories under Linux?
feedback
|
migrated from stackoverflow.com Feb 22 '10 at 17:08
This question came from our site for professional and enthusiast programmers.
|
Remove all *.swp files underneath the current directory, use the
See | ||||
|
feedback
|
|
Having find do the delete itself remove any risk for space embedded in filename, ...
For extra security also consider adding | |||
|
feedback
|
|
For searching under my home directory (and using the GNU 'find' and 'xargs'), I'd use:
The use of ' | |||
|
feedback
|
bash 4.0
| |||
|
feedback
|