标签:linux命令 ctime ls -l 常用 atime 修改 time 文件 限时
touch: change file timestamps 更改文件时间戳[root@www ~]# touch a.txt #创建空文件,常用
[root@www ~]# ls -l a.txt
-rw-r--r--. 1 root root 0 Aug 26 05:30 a.txt
[root@www ~]# ls -l --time=atime test.txt #访问时间
-rw-r--r--. 1 root root 610 Aug 26 05:01 test.txt
[root@www ~]# ls -l --time=ctime test.txt #修改属性与权限时间
-rw-r--r--. 1 root root 610 Aug 23 05:04 test.txt
[root@www ~]# ls -l test.txt #更改文件内容的时间
-rw-r--r--. 1 root root 610 Aug 23 05:04 test.txt
[root@www ~]# touch -a test.txt #更改文件的访问时间为当前时间
[root@www ~]# ll --time=atime test.txt
-rw-r--r--. 1 root root 610 Aug 26 05:26 test.txt
[root@www ~]# touch -m test.txt #更改文件修改内容的时间
[root@www ~]# ll test.txt
-rw-r--r--. 1 root root 610 Aug 26 05:29 test.txt
标签:linux命令 ctime ls -l 常用 atime 修改 time 文件 限时
原文地址:http://blog.51cto.com/12107790/2164382