touch命令 – 创建文件-kb88凯时官网登录

来自:网络
时间:2020-09-24
阅读:
免费资源网 - https://freexyz.cn/

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

touch命令会根据当前的系统时间更新指定文件的访问时间和修改时间。如果文件不存在,将会创建新的空文件,除非指定了”-c”或”-h”选项。

注意:在修改文件的时间属性的时候,用户必须是文件的属主,或拥有写文件的访问权限。

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

常用参数:

-a改变档案的读取时间记录
-m 改变档案的修改时间记录
-r使用参考档的时间记录,与 --file 的效果一样
-c不创建新文件
-d设定时间与日期,可以使用各种不同的格式
-t设定档案的时间记录,格式与 date 命令相同
--no-create 不创建新文件
--help显示帮助信息
--version列出版本讯息

参考实例

创建空文件:

[root@linuxcool ~]# touch file.txt  

批量创建文件:

[root@linuxcool ~]# touch file{1..5}.txt [root@linuxcool ~]# lsfile1.txt file2.txt file3.txt file4.txt file5.txt 

修改文件的access(访问)时间:

[root@linuxcool ~]# stat file.txt   file: file.txt   size: 0               blocks: 0          io block: 512    regular empty file device: 2h/2d   inode: 87538717757135273  links: 1 access: (0666/-rw-rw-rw-)  uid: ( 1000/  root)   gid: ( 1000/  root) access: 2019-04-07 00:25:34.729216500  0800 modify: 2019-04-07 00:25:34.729216500  0800 change: 2019-04-07 00:25:34.729216500  0800  birth: -[root@linuxcool ~]# touch -a file.txt [root@linuxcool ~]# stat file.txt   file: file.txt   size: 0               blocks: 0          io block: 512    regular empty file device: 2h/2d   inode: 87538717757135273  links: 1 access: (0666/-rw-rw-rw-)  uid: ( 1000/  root)   gid: ( 1000/  root) access: 2019-04-07 00:26:13.004116000  0800 modify: 2019-04-07 00:25:34.729216500  0800 change: 2019-04-07 00:26:13.004116000  0800  birth: -
免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图