May 062010
Find all files on a system larger than X MB
Answer:
To find all files on a system larger than X MB, is easy with the find command
# find / -type f -size +100M
All files larger than 100M will be returned.
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Find all files on a system larger than X MB
Answer:
To find all files on a system larger than X MB, is easy with the find command
# find / -type f -size +100M
All files larger than 100M will be returned.