仅列出最近 24 小时在 unix 中创建的文件
list only last 24 hours created files in unix
我想显示 24 小时前创建的文件,但下面的命令也给了 2012、2013 年的文件任何建议。
**sdtt02 [c_t2] 406: find /users/c_t2/ws/ -maxdepth 1 ! -name 'ws' ! -name 'binaries' ! -name 'delivery' ! -name 'cause' -ctime 1**
/users/c_t2/ws/Rlinp53.nic
/users/c_t2/ws/Rlinp55.nic
/users/c_t2/ws/new.sh
/users/c_t2/ws/file
/users/c_t2/ws/Rlinp53.nic%
/users/c_t2/ws/.linuxemuver.swp
sdtt02 [c_t2] 407: ls -lrt /users/c_t2/ws/Rlinp53.nic
-rwxr-xr-x 1 c_2 dhs3 89 Oct 22 2007 /users/c_t2/ws/Rlinp53.nic
sdtt02 [c_t2] 408: ls -lrt /users/c_t2/ws/Rlinp55.nic
-rwxr-xr-x 1 c_t2 dhs3 70 Apr 22 2008 /users/c_t2/ws/Rlinp55.nic
查找过去 24 小时内在特定目录及其 sub-directories 中创建的所有文件:
find /users/c_t2/ws/ -ctime -1 -ls
如果要查找所有修改过的文件:
find /users/c_t2/ws/ -mtime -1 -ls
我想显示 24 小时前创建的文件,但下面的命令也给了 2012、2013 年的文件任何建议。
**sdtt02 [c_t2] 406: find /users/c_t2/ws/ -maxdepth 1 ! -name 'ws' ! -name 'binaries' ! -name 'delivery' ! -name 'cause' -ctime 1**
/users/c_t2/ws/Rlinp53.nic
/users/c_t2/ws/Rlinp55.nic
/users/c_t2/ws/new.sh
/users/c_t2/ws/file
/users/c_t2/ws/Rlinp53.nic%
/users/c_t2/ws/.linuxemuver.swp
sdtt02 [c_t2] 407: ls -lrt /users/c_t2/ws/Rlinp53.nic
-rwxr-xr-x 1 c_2 dhs3 89 Oct 22 2007 /users/c_t2/ws/Rlinp53.nic
sdtt02 [c_t2] 408: ls -lrt /users/c_t2/ws/Rlinp55.nic
-rwxr-xr-x 1 c_t2 dhs3 70 Apr 22 2008 /users/c_t2/ws/Rlinp55.nic
查找过去 24 小时内在特定目录及其 sub-directories 中创建的所有文件:
find /users/c_t2/ws/ -ctime -1 -ls
如果要查找所有修改过的文件:
find /users/c_t2/ws/ -mtime -1 -ls