Category: File I/O tags: FileFindRecursion Find Files Recursively find with -type f, size filter, and -exec for batch action. Author: chris // Language: Bash Download Print Copy Code Share #!/usr/bin/env bash set -euo pipefail find /var/log -type f -name '*.log' -size +10M -mtime -7 \ -exec ls -lh {} +