-1

In Unix, how can I list all directories created before a specific date (March 6 2013)?

I do not need to do this recursively.

The present working directory has 70000 folders and I just need to cat out the name of the directories with a create date before 3/16/2013 to text file.

user1526912
  • 15,818
  • 14
  • 57
  • 92

1 Answers1

2

find -type d -mtime +43 -maxdepth 1

user1526912
  • 15,818
  • 14
  • 57
  • 92