Table of Contents
$ find "${path}" -name "*.py"
$ find "${path}" -name "*code*"
$ find "${path}" -iname "*.py"
# b block
# c character
# d directory
# p named pipe
# f regular file
# l symbolic link
# s socket
# find regular file
$ find "${path}" -type f -name "*.py"
# find directory
$ find "${path}" -type d
# find files < 50M
$ find "${path}" -type f -size -50M
# find files > 50M
$ find "${path}" -type f -size +50M
# files are not accessed > 7 days
$ find "${path}" -type f -atime +7
# files are accessed < 7 days
$ find "${path}" -type f -atime -7
# files are not accessed > 10 min
$ find "${path}" -type f -amin +10
# files are accessed < 10 min
$ find "${path}" -type f -amin -10
$ find "${path}" -type f -user "${USER}"
# delete by pattern
$ find "${path}" -type f -name "*.sh" -delete
# delete recursively
find ker -type d -exec rm -rf {} \+
$ find ker -type f -exec grep -rni "test" {} \+
# or
$ find ker -type f -exec grep -rni "test" {} \;