I have a problem with removing files when I find them. Task : must find files with spaces and remove them
my try :)
rm $(find -L /root | grep -i \' \') <
Why not thus:
find /root -type f -name '* *' -exec rm -f {} ';'