Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: How to delete "now" the recordings?



On Sun, Jan 05, 2003 at 11:58:29AM +0100, Gregoire Favre wrote:
> Hello,
> 
> is there an easy way to delete all that is marked .del in VDR?

If you have the "plain old simple"-Layout of dirs:
rm -rfv /video/video?/*/*.del
rmdir /video/video?/*

??

Or for the deeper one:

find /video -type d -name "*.del" -exec rm -rf {} \;
find /video -type d -empty -exec rmdir {} \;


Put the matching one into command.conf and be happy. :-)
Btw I haven't tested the statements above, but they SHOULD be correct. :-)



Bis denn

-- 
Real Programmers consider "what you see is what you get" to be just as 
bad a concept in Text Editors as it is in women. No, the Real Programmer
wants a "you asked for it, you got it" text editor -- complicated, 
cryptic, powerful, unforgiving, dangerous.



-- 
Info:
To unsubscribe send a mail to listar@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index