From 8e5e9dd0a49c23961d1939016dbc61f2d824bb31 Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Wed, 6 Nov 2019 00:45:05 +0000 Subject: [PATCH] Minor comment cleanup, to keep it consistent --- sheets/find | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/sheets/find b/sheets/find index 1723835..8b4a956 100644 --- a/sheets/find +++ b/sheets/find @@ -1,54 +1,55 @@ -# To find files by case-insensitive extension (ex: .jpg, .JPG, .jpG): +# Find files by case-insensitive extension (ex: .jpg, .JPG, .jpG): find . -iname '*.jpg' -# To find directories: +# Find directories: find . -type d -# To find files: +# Find files: find . -type f -# To find files by octal permission: +# Find files by octal permission: find . -type f -perm 777 -# To find files with setuid bit set: +# Find files with setuid bit set: find . -xdev \( -perm -4000 \) -type f -print0 | xargs -0 ls -l # To find files with extension '.txt' and remove them: find ./path/ -name '*.txt' -exec rm '{}' \; -# To find files with extension '.txt' and look for a string into them: +# Find files with extension '.txt' and look for a string into them: find ./path/ -name '*.txt' | xargs grep 'string' -# To find files with size bigger than 5 Mb and sort them by size: +# Find files with size bigger than 5 Mb and sort them by size: find . -size +5M -type f -print0 | xargs -0 ls -Ssh | sort -z -# To find files bigger thank 2 MB and list them: +# 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 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 symlinks owned by a user and list file information find . -type l --user=username -ls -# To search for and delete empty directories +# 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 +# Search for directories named build at a max depth of 2 directories find . -maxdepth 2 -name build -type d -# To search all files who are not in .git directory +# Search all files who are not in .git directory find . ! -iwholename '*.git*' -type f -# To find all files that have the same node (hard link) as MY_FILE_HERE +# Find all files that have the same node (hard link) as MY_FILE_HERE find . -type f -samefile MY_FILE_HERE 2>/dev/null -# To find all files in the current directory and modify their permissions +# Find all files in the current directory and modify their permissions find . -type f -exec chmod 644 {} \; -# To find files with extension '.txt.' and edit all of them with vim +# Find files with extension '.txt.' and edit all of them with vim # vim is started only once for all files find . -iname '*.txt' -exec vim {} \+ -# To find all files with extension '.png' and rename them by changing extension to '.jpg' (base name is preserved) +# Find all files with extension '.png' and rename them by changing extension to +# '.jpg' (base name is preserved) find . -type f -iname '*.png' -exec bash -c 'mv "$0" "${0%.*}.jpg"' {} \;