马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
touch 命令
概述:
touch 命令用于更改文件的访问和/或修改时间。
如果文件不存在,touch 会创建一个新的空文件。
格式:
touch [选项]... 文件...
选项:
选项 | 含义 | -a | 只更改访问时间。 | -m | 只更改修改时间。 | -r, --reference=文件 | 使用参考文件的时间而不是当前时间。 | -t | 使用 [[CC]YY]MMDDhhmm[.ss] 而不是当前时间。 | --help | 显示帮助信息并退出。 | --version | 显示版本信息并退出。 |
参数:
实例:
[fishc@localhost ~]$ touch file.txt # 创建一个新的空文件 file.txt
[fishc@localhost ~]$ touch -a file.txt # 只更新 file.txt 的访问时间
[fishc@localhost ~]$ touch -m file.txt # 只更新 file.txt 的修改时间
[fishc@localhost ~]$ touch -r ref.txt file.txt # 使用 ref.txt 的时间更新 file.txt 的时间
[fishc@localhost ~]$ touch -t 202312101530.30 file.txt # 设置 file.txt 的时间为 2023 年 12 月 10 日 15 点 30 分 30 秒
小甲鱼科普:
touch 命令是一个非常实用的命令,主要用于更改文件的访问和/或修改时间。它经常被用于创建新的空文件。
touch 命令的一个常见用途是在脚本中用来检查文件是否存在。如果文件不存在,touch 将创建一个新的空文件,这可以在脚本中用来做标记。
来源: touch -- 创建新的空文件 |