I want to delete different several files with the linux shell.
find . -name ".zip" | xargs rm
The command works fine, but now I came across files which have names like this: "Revenue Backup2018.zip"
The command seems to split up the files into two files and can not find them
rm: cannot remove './Revenue': No such file or directory
rm: cannot remove 'backup2018.zip': No such file or directory
Is there a way to ignore the whitespaces?
Thank you :-)