rtcontrol --from-view complete seedtime=+14d 'realpath=/Torrents/Seeding/' -qo '~/bin/rtmv "$(path)s" /Torrents/Complete/$(now.iso).7s --cron' | bash
This creates a symbolic link in /Torrents/Seeding/... pointing to /Torrents/Complete/...
Now I would like to remove the torrent from rtorrent, and delete the linked files from /Torrent/Seeding/.. yet keeping the original files in /Torrents/Complete/...
INFO Keeping non-empty directory '/Torrents/Seeding/linux_something' with 16 entries!
The linked folder in /Torrents/Seeding is still there, yet empty... and the original files are still there in /Torrents/Complete
I can then do a "rm -rf /Torrents/Seeding/linux_something" which removes the link, and the original files are kept in /Torrents/Complete...
Why does --cull and --purge delete both the linked files and the original files ? And why only with the --yes option set ?
Is there another way to get where I want to go ? Or is this actually a bug ?
I could of cause do a find /Torrents/Seeding/. -type l -exec rm -rf {} \;
But I would rather use rtcontrol for it as I'm not too keen on "rm -rf" in a script ;-)
Any help would be great :-)
/Beardmann