Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com
sudo find /home/public/data -iname "*.iso" -exec ln -sfv '{}' '{}.dvd' \;
sudo find /home/public/data -type l -iname "*.dvd" -exec rm -v '{}' \;
sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;
Zaerc, I would suggest doing this for removal:Code: [Select]sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;just being a bit more paranoid
Quote from: kir on September 05, 2007, 01:59:51 pmZaerc, I would suggest doing this for removal:Code: [Select]sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;just being a bit more paranoid Paranoia is nice and all, but that's simply not going to work.
The problem is that this find command looks specificly for symbolic links only, which the *.iso files most likely are not. Otherwise simply appending .dvd would be correct, as that is how they were made by the other command.
Quote from: Zaerc on September 05, 2007, 04:01:30 pmThe problem is that this find command looks specificly for symbolic links only, which the *.iso files most likely are not. Otherwise simply appending .dvd would be correct, as that is how they were made by the other command.the .dvd rips are just .iso's.... but with a different extension. .dvd's are readable by all software that can handle .iso's in our experience.
Thanks, I was completely unaware of that...