touch常用的命令

[root@localhost bbb]# touch 1.txt #创建文件
[root@localhost bbb]# ll
total 0
-rw-r--r--. 1 root root 0 Dec 29 22:58 1.txt
[root@localhost bbb]# touch {2.txt,3.txt} #创建多个文件
[root@localhost bbb]# ls
1.txt  2.txt  3.txt
[root@localhost bbb]# touch 4.txt 5.txt
[root@localhost bbb]# ls
1.txt  2.txt  3.txt  4.txt  5.txt
[root@localhost bbb]# touch demo{1..10}.txt #创建多个文件序列
[root@localhost bbb]# ll
total 0
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo10.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo1.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo2.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo3.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo4.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo5.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo6.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo7.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo8.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo9.txt

[root@localhost bbb]# touch demo{a..z}.txt #创建多个文件序列
[root@localhost bbb]# ll
total 0
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoa.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demob.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 democ.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demod.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoe.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demof.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demog.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoh.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoi.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoj.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demok.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demol.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demom.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demon.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoo.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demop.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoq.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demor.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demos.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demot.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demou.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demov.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demow.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demox.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoy.txt
-rw-r--r--. 1 root root 0 Dec 29 23:01 demoz.txt
[root@localhost bbb]# touch -t 10240606 demo1.txt #修改文件时间
[root@localhost bbb]# ll
total 0
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo10.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo2.txt
-rw-r--r--. 1 root root 0 Dec 29 23:00 demo3.txt

 

posted @ 2024-12-29 23:07  鲁班大师智商二百五  阅读(11)  评论(0)    收藏  举报