Categories
How to form a bash command?
How to find in "./folder/" directory (and in all subdirectories) all files ending with ".log" that have been modified in the last 2 days and are >10MB in size.
Answer the question
In order to leave comments, you need to log in
find ./folder/ -name "*.log" -size +10M -mtime -2
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question