In Unix how to list all directories created before a specified date? -
in unix, how can list directories created before specific date (march 6 2013)?
i not need recursively.
the present working directory has 70000 folders , need cat out name of directories create date before 3/16/2013 text file.
find -type d -mtime +43 -maxdepth 1
Comments
Post a Comment