Adding additional find commands

This commit is contained in:
Grant Bremer 2013-09-21 13:39:46 -04:00
parent 0cc76a78a1
commit bbab921bf8
1 changed files with 12 additions and 0 deletions

View File

@ -24,3 +24,15 @@ find ./ -size +5M -type f -print0 | xargs -0 ls -Ssh
# To find files bigger thank 2 MB and list them:
find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
# To find files modified more than 7 days ago and list file information
find . -type f -mtime +7d -ls
# To find symlinks owned by a user and list file information
find . -type l --user=username -ls
# To search for and delete empty directories
find . -type d -empty -exec rmdir {} \;
# To search for directories named build at a max depth of 2 directories
find . -maxdepth 2 -name build -type d