shyam
shyam

Reputation: 101

How to list the directories non recursively which are 30 days older

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

Answers (1)

Chris Seymour
Chris Seymour

Reputation: 85775

Add the maxdepth option:

find . -maxdepth 1 -type d -mtime +30 

Upvotes: 3

Related Questions