On 2015-10-09 14:01, Grant Edwards wrote: > > Is there an available script to remove file created by either > > using the Python module or by using git? > > Yes. Execute the following at the bash prompt: > > $ rm $(find . <find-options-go-here>)
If you've got GNU find, you can just $ find . -type f {find-options-go-here} -delete (The find(1) on the OpenBSD box I have at hand doesn't include a -delete option) -tkc -- https://mail.python.org/mailman/listinfo/python-list