Reputation: 101
I want to list the folders in UNIX which are older than a month. I have tried the following options:
find . -type d -mtime +30
Which will list files recursively however I want non recursive one.
Upvotes: 0
Views: 702
Reputation: 85775
Add the maxdepth
option:
find . -maxdepth 1 -type d -mtime +30
Upvotes: 3