linux命令-touch命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
touch命令
一、简介
touch命令将每个文件的访问时间和修改时间改为当前时间。
二、用法
touch [选项] ... 文件 ...
三、选项
-a
: 只更改访问时间-c
,--no-create
: 不创建任何文件-d
,--date=字符串
: 使用指定字符串表示时间而非当前时间-f
: (忽略)-h
,--no-dereference
: 会影响符号链接本身,而非符号链接所指示的目的地(当系统支持更改符号链接的所有者时,此选项才有用)-m
: 只更改修改时间-r
,--reference=文件
: 使用指定文件的时间属性而非当前时间-t
STAMP` : 使用[[CC]YY]MMDDhhmm[.ss] 格式的时间而非当前时间--time=WORD
:使用WORD 指定的时间:access、atime、use 都等于-a选项的效果,而modify、mtime 等于-m 选项的效果
四、实例
1、在当前目录下建立一个空文件a.log
[root@VM_0_4_centos chenwei]# touch a.txt
[root@VM_0_4_centos chenwei]# ll
total 60
-rw-r--r-- 1 root root 0 Jun 24 18:37 a.txt
2、更新a.log的修改时间为当前时间
[root@VM_0_4_centos chenwei]# touch a.txt
[root@VM_0_4_centos chenwei]# ll
total 60
-rw-r--r-- 1 root root 0 Jun 24 18:38 a.txt
3、更新log1.log的时间和log2.log时间戳相同
[root@VM_0_4_centos chenwei]# touch case.sh -r a.txt
[root@VM_0_4_centos chenwei]# ll
total 60
-rw-r--r-- 1 root root 0 Jun 24 18:38 a.txt
-rwxr--r-- 1 chenwei chenwei 99 Jun 24 18:38 case.sh
4、设置文件的时间戳
[root@VM_0_4_centos chenwei]# touch a.txt -t 201806241840.50
[root@VM_0_4_centos chenwei]# ll
total 60
-rw-r--r-- 1 root root 0 Jun 24 18:40 a.txt
五、参考
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)