touch命令 – 创建文件

2021-08-10 11:22:06 浏览数 (1)

touch命令有两个功能:一是创建新的空文件,二是改变已有文件的时间戳属性。

语法格式:touch [参数] [文件

常用参数

-a

改变档案的读取时间记录

-m

改变档案的修改时间记录

-r

使用参考档的时间记录,与 --file 的效果一样

-c

不创建新文件

-d

设定时间与日期,可以使用各种不同的格式

-t

设定档案的时间记录,格式与 date 命令相同

常用实例

创建空文件

代码语言:javascript复制
touch file.txt

批量创建文件

代码语言:javascript复制
[root@localhost ~]# touch file{1..5}.txt 
[root@localhost ~]# ls
file1.txt file2.txt file3.txt file4.txt file5.txt 

0 人点赞