touch命令將每個檔案的訪問時間和修改時間改為當前時間。
touch [選項] ... 檔案 ...
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
jun2418:
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
jun2418:
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
jun2418:
38 a.txt
-rwxr--r-- 1 chenwei chenwei 99
jun2418:
38case.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
jun2418:
40 a.txt
Linux命令分析 touch
用途 更改檔案的時間戳,常用來建立新的空檔案 用法 touch 選項.檔案.touch命令可用來更改檔案的atime和mtime到當前時間,如果touch命令後接的檔案不存在,則會建立乙個該檔名的空檔案 除非有 c或 h引數 引數 a 只更改atime c no create 不建立任何檔案 d d...
Linux基礎命令 touch
檔案處理 touch命令有兩個功能 一是用於把已存在檔案的時間標籤更新為系統當前的時間 預設方式 它們的資料將原封不動地保留下來 二是用來建立新的空檔案。touch 選項 引數 選項 a 或 time atime或 time access或 time use 只更改訪問時間 c 或 no creat...
Linux命令(9) touch命令
linux的touch命令不常用,一般在使用make的時候可能會用到,用來修改檔案時間戳,或者新建乙個不存在的檔案。1 命令格式 touch 選項 檔案.2 命令引數 a 或 time atime或 time access或 time use 只更改訪問時間。c 或 no create 不建立任何文...