- 论坛徽章:
- 11
|
看一下下面,看看能不能理解... 注意当前时间...
- [root@netsky test]# date
- Thu Feb 12 23:26:41 CST 2009
- [root@netsky test]# ll
- total 0
- -rw-r--r-- 1 root root 0 Feb 10 10:00 1
- -rw-r--r-- 1 root root 0 Feb 10 10:00 2
- -rw-r--r-- 1 root root 0 Feb 11 10:00 3
- -rw-r--r-- 1 root root 0 Feb 11 10:00 4
- -rw-r--r-- 1 root root 0 Feb 12 23:21 5
- -rw-r--r-- 1 root root 0 Feb 12 23:21 6
- -rw-r--r-- 1 root root 0 Feb 13 2009 7
- -rw-r--r-- 1 root root 0 Feb 13 2009 8
- [root@netsky test]# find . -mtime +1
- ./2
- ./1
- [root@netsky test]# find . -mtime 1
- ./3
- ./4
- [root@netsky test]# find . -mtime -1
- .
- ./5
- ./7
- ./8
- ./6
复制代码 |
|