On 12/02/14 13:11, Leonardo Barbosa wrote:
> I'd like to find TeX files (find $HOME -type f -name '*.tex'). Let's say i
> have found files a.tex, b.tex, and c.tex. Now, i wanna remove a.aux, b.aux,
> c.aux. What's the best way of doing that?
find $HOME -type f -name '*.tex' -exec rm {} \;
Jan