Linux之文件管理类命令详解(4)

输出:

[root@localhost test]# touch log2012.log log2013.log [root@localhost test]# ll -rw-r--r-- 1 root root    0 10-28 16:01 log2012.log -rw-r--r-- 1 root root    0 10-28 16:01 log2013.log

如果log2014.log不存在,则不创建文件

[root@localhost test]# touch -c log2014.log [root@localhost test]# ll -rw-r--r-- 1 root root    0 10-28 16:01 log2012.log -rw-r--r-- 1 root root    0 10-28 16:01 log2013.log

实例二:更新a的时间与1时间戳相同

命令:

touch -r 1 a

输出:

[root@localhost ~]# ll a 1 -rw-r--r-- 1 root root 36 Dec 29 05:58 1 -rw-r--r-- 1 root root 30 Dec 29 05:30 a [root@localhost ~]# touch -r 1 a [root@localhost ~]# ll a 1      -rw-r--r-- 1 root root 36 Dec 29 05:58 1 -rw-r--r-- 1 root root 30 Dec 29 05:58 a

实例三:设定文件的时间戳

命令:

touch -t 201211142234.50 log.log

输出:

[root@localhost test]# ll -rw-r--r-- 1 root root    0 10-28 14:48 log2012.log -rw-r--r-- 1 root root    0 10-28 16:01 log2013.log -rw-r--r-- 1 root root    0 10-28 14:48 log.log [root@localhost test]# touch -t 201211142234.50 log.log [root@localhost test]# ll -rw-r--r-- 1 root root    0 10-28 14:48 log2012.log -rw-r--r-- 1 root root    0 10-28 16:01 log2013.log -rw-r--r-- 1 root root    0 2012-11-14 log.log

说明:

1.-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日的时间是错误的。

2.访问时间(access time)不会每次访问都变化(避免浪费系统资源),只有访问时间旧于文件修改时间,或者相对时间为大于一天才会自动更新。

cp命令:

cp命令用来复制文件或者目录,是Linux系统中最常用的命令之一。一般情况下,shell会设置一个别名,在命令行下复制文件时,如果目标文件已经存在,就会询问是否覆盖,不管你是否使用-i参数。但是如果是在shell脚本中执行cp时,没有-i参数时不会询问是否覆盖。这说明命令行和shell脚本的执行方式有些不同。

1.命令格式:

用法:

cp [选项]... [-T] 源 目的

或:cp [选项]... 源... 目录

或:cp [选项]... -t 目录 源...

2.命令功能:

将源文件复制至目标文件,或将多个源文件复制至目标目录。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/14362.html