2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-11 01:10:31 +00:00
cheat.sheets/sheets/find

62 lines
2.0 KiB
Plaintext
Raw Normal View History

# Find files by case-insensitive extension (ex: .jpg, .JPG, .jpG):
find . -iname '*.jpg'
2018-01-12 10:20:53 +00:00
# Find directories:
2018-01-12 10:20:53 +00:00
find . -type d
# Find files:
2018-01-12 10:20:53 +00:00
find . -type f
# Find files by octal permission:
2018-01-12 10:20:53 +00:00
find . -type f -perm 777
# Find files with setuid bit set:
2018-01-12 10:20:53 +00:00
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 '{}' \;
# Find files with extension '.txt' and look for a string into them:
2018-01-12 10:20:53 +00:00
find ./path/ -name '*.txt' | xargs grep 'string'
# Find files with size bigger than 5 Mb and sort them by size:
2018-01-12 10:20:53 +00:00
find . -size +5M -type f -print0 | xargs -0 ls -Ssh | sort -z
# Find files bigger thank 2 MB and list them:
2018-01-12 10:20:53 +00:00
find . -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'
# Find files modified more than 7 days ago and list file information
2018-01-12 10:20:53 +00:00
find . -type f -mtime +7d -ls
# Find symlinks owned by a user and list file information
2018-01-12 10:20:53 +00:00
find . -type l --user=username -ls
# Search for and delete empty directories
2018-01-12 10:20:53 +00:00
find . -type d -empty -exec rmdir {} \;
# Search for directories named build at a max depth of 2 directories
2018-01-12 10:20:53 +00:00
find . -maxdepth 2 -name build -type d
# Search all files who are not in .git directory
2018-01-12 10:20:53 +00:00
find . ! -iwholename '*.git*' -type f
# Find all files that have the same node (hard link) as MY_FILE_HERE
2018-01-12 10:20:53 +00:00
find . -type f -samefile MY_FILE_HERE 2>/dev/null
# Find all files in the current directory and modify their permissions
2018-01-12 10:20:53 +00:00
find . -type f -exec chmod 644 {} \;
# Find files with extension '.txt.' and edit all of them with vim
2018-01-12 10:20:53 +00:00
# vim is started only once for all files
find . -iname '*.txt' -exec vim {} \+
# 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"' {} \;
# Use logic and grouping to delete extension-specific files.
find \( -iname "*.jpg" -or -iname "*.sfv" -or -iname "*.xspf" \) -type f -delete
# List all executable files, by basename, found within PATH.
find ${PATH//:/ } -type f -executable -printf "%P\n"