Linux 一学就会之文件的基本管理和 XFS 文件系统备份恢复
创建文件和文件夹
命令之:touch ; touch [tʌtʃ] 触摸;接触;
作用:常用来创建空文件,如果文件存在,则修改这个文件的时间
语法:touch 文件名
复制代码
本文字数:360 字
阅读完需:约 1 分钟
命令之:touch ; touch [tʌtʃ] 触摸;接触;
作用:常用来创建空文件,如果文件存在,则修改这个文件的时间
语法:touch 文件名
[root@xuegod63 ~]# cd /opt/
[root@xuegod63 opt]# touch a.txt
[root@xuegod63 opt]# touch file1 file2
[root@xuegod63 opt]# touch file{6..20} #创建file6到file20的文件
[root@xuegod63 opt]# ls
a.txt file10 file12 file14 file16 file18 file2 file6 file8 rh
file1 file11 file13 file15 file17 file19 file20 file7 file9
[root@xuegod63 ~]# touch a.txt
[root@xuegod63 ~]# ll a.txt
-rw-r--r--. 1 root root 0 8月 10 21:13 a.txt #这个时间是文件的修改时间。
[root@xuegod63 ~]# stat a.txt #查看文件属性(其中包括文件时间属性)
还未添加个人签名 2021.06.02 加入
10年Linux使用及管理经验,7年IT在线教育培训经验。精通Linux、Python、思科、C++、安全渗透等技术。曾任职国内知名互联网公司高级运维架构师、运维总监。对基于Linux下开源程序Openstack、Docker、K8S、DevOps、
促进软件开发及相关领域知识与创新的传播
评论