« Burrow Cams | Main | Block indents in Gedit »
March 23, 2012
Find and delete files by name in Ubuntu
$ sudo find /var/cache/apt -name '*soffice*' -exec rm -rf {} \;
there is also a -type command where -type f will find only files.
Posted by kkwaiser at March 23, 2012 09:14 PM