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