touch
创建一个普通文件。
格式
touch [-amc] <file name>
说明
[root@sylixos:/root]# help touch
touch a file
touch [-amc] file name
[root@sylixos:/root]#
此命令有 2 种用法:
- 无选项:表示创建一个普通的文件。
- 选项-amc:a 表示改变文件的访问时间,m 表示改变修改时间,c 表示如果文件不存在,不创建文件。若不带参数 c,只有参数 a 或 m 时,如果文件不存在会先创建文件。
备注:
参数 a 和 m 功能暂时未实现。
样例
[root@sylixos:/apps/test]# ls
hello.c
[root@sylixos:/apps/test]# touch -c temp.txt
[root@sylixos:/apps/test]# ls
hello.c
[root@sylixos:/apps/test]# touch temp.txt
[root@sylixos:/apps/test]# ls
hello.c temp.txt
[root@sylixos:/apps/test]#