find#
Walk a tree to find files matching criteria.
$ find . -name '*.py'
$ find . -iname '*.LOG'
$ find . -type f -size +100M
$ find . -mtime -7
$ find . -name '*.tmp' -delete
$ find . -type f -exec chmod 644 {} +
Walk a tree to find files matching criteria.
$ find . -name '*.py'
$ find . -iname '*.LOG'
$ find . -type f -size +100M
$ find . -mtime -7
$ find . -name '*.tmp' -delete
$ find . -type f -exec chmod 644 {} +