i.e.

List any files between 2014-01-25 1300 - 2014-01-25 2000 in

Cheers

有帮助吗?

解决方案

You can use the find command with multiple selectors - e.g. find . -mtime +1 -mtime -3. It can be used with ctime, atime, etc., as well.

其他提示

Assuming you have a GNU find (which you could compile on SunOS if you don't have it), use the age range options for find

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top