I have a bunch of files in /home/fvw/files, about half of these files is
already on cd-rom, the rest isn't. All files are in subdirectories, wich
themselves don't have subdirs.
I want to delete all the files that are already on the CD, so I tried:
for i in /mnt/cdrom/*/*; do rm /home/fvw/files/$i ; done
But rm give problems because of the spaces in filenames.
So I tried:
for i in /mnt/cdrom/*/*; do rm \"/home/fvw/files/$i\" ; done
Which doesn't work either, because rm thinks the quotes are part of the filename.
Anybody know how to get this working?
--
Frank v Waveren
ICQ# 10074100