touch命令有两个功能:一是用于把已存在文件的时间标签更新为系统当前的时间(默认方式),它们的数据将原封不动地保留下来;二是用来创建新的空文件。
语法
touch(选项)(参数)
选项
-a:或–time=atime或–time=access或–time=use 只更改存取时间,即只更新访问时间,不改变修改时间;
-c:或–no-create 不建立任何文件;
-d:<时间日期> 使用指定的日期时间,而非现在的时间;
-f:此参数将忽略不予处理,仅负责解决BSD版本touch指令的兼容性问题;
-m:或–time=mtime或–time=modify 只更该变动时间;
-r:<参考文件或目录> 把指定文件或目录的日期时间,统统设成和参考文件或目录的日期时间相同;
-t:<日期时间> 使用指定的日期时间,而非现在的时间,如:07081556代表7月8号15点56分;
–help:在线帮助;
–version:显示版本信息。
参数
文件:指定要设置时间属性的文件列表。
常用示例
1、创建空的文件
[[email protected] exceltemplates]# touch log2.txt [[email protected] exceltemplates]# ll total 0 -rw-r--r-- 1 root root 0 Nov 29 10:10 log2.txt -rw-r--r-- 1 root root 0 Nov 29 10:06 log.txt -rw-r--r-- 1 root root 0 Nov 29 10:06 temp
2、更新访问时间
[[email protected] exceltemplates]# ll total 2-rw-r--r-- 1 root root 25 Nov 29 10:12 log.txt #文件修改时间 [[email protected] exceltemplates]# ls -lu total 2-rw-r--r-- 1 root root 25 Nov 29 10:13 log.txt #文件访问时间
[[email protected] exceltemplates]# touch -at 01081010 log.txt [[email protected] exceltemplates]# ll total 2-rw-r--r-- 1 root root 25 Nov 29 10:12 log.txt #文件修改时间并没有变 [[email protected] exceltemplates]# ls -lu total 2-rw-r--r-- 1 root root 25 Jan 8 2017 log.txt #文件访问时间变成了修改后的时间
3、更新修改时间
[[email protected] exceltemplates]# touch -m log.txt [[email protected] exceltemplates]# ll total 2 -rw-r--r-- 1 root root 25 Nov 29 10:21 log.txt #修改了文件修改时间 [[email protected] exceltemplates]# ll -lu total 2 -rw-r--r-- 1 root root 25 Jan 8 2017 log.txt #文件访问时间并没有改变
4、同时修改文件的修改时间以及文件访问时间
[[email protected] exceltemplates]# touch log.txt #修改文件的访问时间以及修改时间为当前时间 [[email protected] exceltemplates]# ll total 2-rw-r--r-- 1 root root 25 Nov 29 10:26 log.txt [[email protected] exceltemplates]# ls -lu total 2-rw-r--r-- 1 root root 25 Nov 29 10:26 log.txt [[email protected] exceltemplates]# touch -t 02021531 log.txt #修改文件的访问时间以及修改时间为特定时间 [[email protected] exceltemplates]# ll total 2-rw-r--r-- 1 root root 25 Feb 2 2017 log.txt [[email protected] exceltemplates]# ls -lu total 2-rw-r--r-- 1 root root 25 Feb 2 2017 log.txt
说明:
-t time 使用指定的时间值 time 作为指定文件相应时间戳记的新值.此处的 time规定为如下形式的十进制数:
[[CC]YY]MMDDhhmm[.SS]
这里,CC为年数中的前两位,即”世纪数”;YY为年数的后两位,即某世纪中的年数.如果不给出CC的值,则touch 将把年数CCYY限定在1969–2068之内.MM为月数,DD为天将把年数CCYY限定在1969–2068之内.MM为月数,DD为天数,hh 为小时数(几点),mm为分钟数,SS为秒数.此处秒的设定范围是0–61,这样可以处理闰秒.这些数字组成的时间是环境变量TZ指定的时区中的一个时 间.由于系统的限制,早于1970年1月1日的时间是错误的。
5、指定当前文件、目录时间戳(修改时间、访问时间)与参考文件、目录一致
[[email protected] exceltemplates]# ll total 8 -rw-r--r-- 1 root root 33 Nov 29 10:41 log.txt drwxr-xr-x 2 root root 4096 Nov 29 10:34 temp [[email protected] exceltemplates]# ls -lu total 8 -rw-r--r-- 1 root root 33 Apr 4 2016 log.txt drwxr-xr-x 2 root root 4096 Nov 29 10:34 temp [[email protected] exceltemplates]# [[email protected] exceltemplates]# touch -r log.txt temp #修改了temp的访问时间和修改时间,用的是log.txt文件的时间 [[email protected] exceltemplates]# ls log.txt temp [[email protected] exceltemplates]# ll total 8 -rw-r--r-- 1 root root 33 Nov 29 10:41 log.txt drwxr-xr-x 2 root root 4096 Nov 29 10:41 temp [[email protected] exceltemplates]# ls -lu total 8 -rw-r--r-- 1 root root 33 Apr 4 2016 log.txt drwxr-xr-x 2 root root 4096 Apr 4 2016 temp
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/1195.html