Monthly Archives: November 2012

Useful find and du Commands

#Find all files that are writeable by other find / -type f -perm -o+w -exec ls -l {} \; #Find all files in current directory that are larger than 50M find . -type f -size +50000k -exec ls -lh {} … Continue reading

Posted in Linux | Comments Off on Useful find and du Commands