|
|
|
|
|
by nodata
4882 days ago
|
|
Please don't run the command above, it doesn't handle spaces. You might delete something you didn't intend to delete. You need to add -print0 to find, and -0 to xargs to make it work properly:
find . -name "*.swp" -print0 | xargs -0 rm But better would be to use -delete as I wrote above. |
|