Archive for September, 2006

Find large files

Find large files

Want to search for files over a certain size on your linux box? find / -xdev  -size +100000k -print This will find files larger than 100MB within the root and it’s subdirectories without venturing onto other filesystems. Original tip .. http://aaltonen.us/archive/2003/04/26/tip-find-large-files/ Tweet

chmod directories only

chmod directories only

Very neat little tip this… find /dir/to/chmod/all/dirs -type d -exec chmod 777 {} \; Originally found here… Tweet