[EMAIL PROTECTED] writes:
> 
> clean:
>       rm 1* 2* 3* 4* 5* 6* 7* 8* 9*
> ----------------------------------
> 
>       Personally, I just do "make clean" :).  
> 
>       Or, for Laura's problem, there's
> 
> bash$ rm `ls | perl -ne 'if(/^\d+\.(ly|tex)/){print;}'`
> 
>       However, a prefix would be a nice long-term solution

2nd solution, much less dangerous:

clean:
        rm `grep -il '^% generated by lilypond'  *`
        rm `grep -il '^%created by: GNU LilyPond' *`
        rm *.dvi *.eps *.png

-- 

Han-Wen Nienhuys   |   [EMAIL PROTECTED]    | http://www.cs.uu.nl/~hanwen/


_______________________________________________
Gnu-music-discuss mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/gnu-music-discuss

Reply via email to