请问在/root目录下没有存在test情况下,怎么用touch建立 /root/test/bing?

比如touch /root/test/bing,在/root目录下没有存在test目录的情况下,怎么使用touch建立 /root/test/bing,
小弟知道mkdir -p /root/test/jianshe/one/two,在加上-p参数后就可以建立多层目录,touch命令有没有这样类似的功能

BIG阳
浏览 258回答 2
2回答

慕妹3146593

touch命令用来修改文件的访问时间、修改时间。如果没有指定时间,则将文件时间属性改为当前时间。当指定文件不存在,则touch命令变为创建该文件。语法:touch [-acm] [-d STRING-time] [-r reference-file] [-t [[CC]YY]MMDDhhmm[.ss]]选项介绍:-a: 只修改访问时间;-c: 如果指定文件不存在,则不创建文件;-d STRING-time: 用字符串格式的时间来指定时间属性的修改值;-m: 只修改指定文件的修改时间;-r refernce-file: 将指定文件的时间属性改为与reference-file时间属性相同的值;-t [[CC]YY]MMDDhhmm[.ss]: 用[[CC]YY]MMDDhhmm[.ss]这种时间格式来指定时间属性的修改值;使用范例:实例一:创建不存在的文件命令:touch log2012.log log2013.log输出:[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实例二:更新log.log的时间和log2012.log时间戳相同命令:touch -r log.log log2012.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-rw-r--r-- 1 root root 0 10-28 14:48 log.log[root@localhost test]# touch -r log.log log2012.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实例三:设定文件的时间戳命令: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说明:-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日的时间是错误的。

米琪卡哇伊

touch命令没有创建多层目录的功能的,建议还是用mkdir -p和touch命令的组合,可以考虑用管道实现在一条命令里创建。
打开App,查看更多内容
随时随地看视频慕课网APP