I have a list of files which I got using find / -type f -size +10M -exec ls -l {} \;
I got this command from here
How can I remove all these files ?
I tried
sudo rm `find / -type f -size +10M -exec ls -l {} \;`
but it doesn't work.
Also, what does {} \
do ? And what's the use of -exec
in this command, will the pipe operator not work ?