Changes

Jump to navigation Jump to search
325 bytes added ,  18:37, 11 May 2016
m
no edit summary
find multiple files/folders
<pre>
$find /path -type d \( -name "foldername1" -o -name "foldername2" \ )
</pre>
find and remove on the fly
<pre>
find /path -name "filename-to-delete" -type f -exec rm -rf {} \;
</pre>

find by size over 500MB and list them into Textfile
<pre>
find / -size +500M -type f > /big-files.txt
</pre>

Navigation menu