touch
用来创建文件,用来修改文件的时间戳。
touch [选项]... 文件...
touch命令参数可更改文档或目录的日期时间,包括存取时间和更改时间。
创建一个1.txt文件
> touch 1.txt
同时创建2.txt 3.txt文件
> touch 2.txt 3.txt
Access
,Modify
时间改成和1.txt一样> touch -r 1.txt 5.txt
> ls
-rw-r--r-- 1 root root 0 Feb 3 23:17 1.txt
-rw-r--r-- 1 root root 0 Feb 3 23:17 5.txt
创建file1.txt file2.txt .... file10.txttouch file{1..10}.txt
> touch -t 202102031111 3.txt
> ls -al
-rw-r--r-- 1 root root 0 Feb 3 11:11 3.txt
> ls -al 5.txt
-rw-r--r-- 1 root root 0 Feb 3 23:17 5.txt
> touch -d "2 days ago" 5.txt
> ls -al 5.txt
> ls
-rw-r--r-- 1 root root 0 Feb 1 23:29 5.txt
1.txt
的Modify
和Change
的时间> stat 1.txt
File: ‘1.txt’
Size: 5 Blocks: 8 IO Block: 4096 regular file
Device: fd01h/64769d Inode: 101371574 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2021-02-03 23:39:45.258947600 +0800
Modify: 2021-02-03 23:40:10.462066771 +0800
Change: 2021-02-03 23:40:10.462066771 +0800
Birth: -
> touch -m 1.txt
> stat 1.txt
stat 1.txt
File: ‘1.txt’
Size: 5 Blocks: 8 IO Block: 4096 regular file
Device: fd01h/64769d Inode: 101371574 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2021-02-03 23:39:45.258947600 +0800
Modify: 2021-02-03 23:40:53.068649293 +0800
Change: 2021-02-03 23:40:53.068649293 +0800
Birth: -
touch — change file access and modification times (BSD)
touch — change file timestamps (GNU)
touch的作用本来不是创建文件,而是将指定文件的修改时间设置为当前时间。就是假装“碰”(touch)了一下这个文件,假装文件被“修改”了,于是文件的修改时间就是被设置为当前时间。这带来了一个副作用,就是当touch一个不存在的文件的时候,它会创建这个文件。然后,由于touch已经可以完成创建文件的功能了,就不再需要一个单独的create了。
原文链接:https://rumenz.com/rumenbiji/linux-touch.html
微信公众号:入门小站
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。