Script To Remove Files Made Either By Python Or Git

Chris Angelico rosuav at gmail.com
Fri Oct 9 10:08:59 EDT 2015


On Sat, Oct 10, 2015 at 1:01 AM, Grant Edwards <invalid at invalid.invalid> wrote:
> Yes.  Execute the following at the bash prompt:
>
> $ rm $(find . <find-options-go-here>)

Or if you're using GNU find:

$ find <find-options-go-here> -delete

ChrisA



More information about the Python-list mailing list