2013-08-28 12:15:59 +02:00
|
|
|
|
# To find files by cas insensitive extension (ex: .jpg, .JPG, .jpG):
|
2013-08-11 21:37:11 +02:00
|
|
|
|
find . -iname "*.jpg"
|
|
|
|
|
|
2013-08-22 03:34:11 +02:00
|
|
|
|
# To find directories:
|
2013-08-11 21:37:11 +02:00
|
|
|
|
find . -type d
|
|
|
|
|
|
2013-08-22 03:34:11 +02:00
|
|
|
|
# To find files:
|
2013-08-11 21:37:11 +02:00
|
|
|
|
find . -type f
|
|
|
|
|
|
2013-08-22 03:34:11 +02:00
|
|
|
|
# To find files by octal permission:
|
2013-08-11 21:37:11 +02:00
|
|
|
|
find . -type f -perm 777
|
|
|
|
|
|
2013-08-22 03:34:11 +02:00
|
|
|
|
# To find files with setuid bit set:
|
2013-08-11 21:37:11 +02:00
|
|
|
|
find . -xdev \( -perm -4000 \) -type f -print0 | xargs -0 ls -l
|
2013-08-28 12:15:59 +02:00
|
|
|
|
|
|
|
|
|
# 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 ./path/ -name '*.txt' | xargs grep 'string'
|
|
|
|
|
|
|
|
|
|
# To find files with size bigger than 5 Mb and sort them by size:
|
|
|
|
|
find ./ -size +5M -type f -print0 | xargs -0 ls -Ssh
|
|
|
|
|
|