You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

touch
===
创建新的空文件
## 补充说明
**touch命令** 有两个功能:一是用于把已存在文件的时间标签更新为系统当前的时间(默认方式),它们的数据将原封不动地保留下来;二是用来创建新的空文件。
### 语法
```
touch(选项)(参数)
```
### 选项
```
-a或--time=atime或--time=access或--time=use 只更改存取时间;
-c或--no-create 不建立任何文件;
-d<时间日期> 使用指定的日期时间,而非现在的时间;
-f此参数将忽略不予处理仅负责解决BSD版本touch指令的兼容性问题
-m或--time=mtime或--time=modify 只更该变动时间;
-r<参考文件或目录> 把指定文件或目录的日期时间,统统设成和参考文件或目录的日期时间相同;
-t<日期时间> 使用指定的日期时间,而非现在的时间;
--help在线帮助
--version显示版本信息。
```
### 参数
文件:指定要设置时间属性的文件列表。
### 实例
```
touch ex2
```
在当前目录下建立一个空文件ex2然后利用`ls -l`命令可以发现文件ex2的大小为0表示它是空文件。
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->