您好,登錄后才能下訂單哦!
本篇內容主要講解“Linux怎么修改文件時間戳”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Linux怎么修改文件時間戳”吧!
上圖中,access、modify、change分別是訪問時間、修改時間、改變時間,即為文件的時間戳。
1.命令格式:
touch [選項]… 文件名…
2.命令參數:
-a 或–time=atime或–time=access或–time=use 只更改存取時間。
-c 或–no-create 不建立任何文檔。
-d 使用指定的日期時間,而非現在的時間。
-f 此參數將忽略不予處理,僅負責解決BSD版本touch指令的兼容性問題。
-m 或–time=mtime或–time=modify 只更改變動時間。
-r 把指定文檔或目錄的日期時間,統統設成和參考文檔或目錄的日期時間相同。
-t 使用指定的日期時間,而非現在的時間。
3.命令功能:
touch命令參數可更改文檔或目錄的日期時間,包括存取時間和更改時間。
4.使用范例:
實例一:創建不存在的文件
命令:
touch test1.txt test2.txt
輸出:
[root@localhost test]# touch test1.txt test2.txt [root@localhost test]# ll -rw-r--r--. 1root root 0 May 18 11:11 test1.txt -rw-r--r--.1 root root 0 May 18 11:11 test2.txt 如果test3.txt不存在,則不創建文件 [root@localhost test]# touch -c test3.txt [root@localhost test]# ll -rw-r--r--. 1root root 0 May 18 11:11 test1.txt -rw-r--r--.1 root root 0 May 18 11:11 test2.txt
實例二:更新test.txt的時間和test2.txt時間戳相同
命令:
touch -r test.txt test2.txt
輸出:
[root@localhost test]# touch test.txt [root@localhost test]# touch -r test.txt test2.txt [root@localhost test]# ll total 0 -rw-r--r--. 1 root root 0 May 18 11:11 test1.txt -rw-r--r--. 1 root root 0 May 18 11:22 test2.txt -rw-r--r--.1 root root 0 May 18 11:22 test.txt
實例三:設定文件的時間戳
命令:
touch -t 201605171210.20 test.txt
輸出:
[root@localhost test]# ll -rw-r--r--. 1root root 0 May 18 11:11 test1.txt -rw-r--r--.1 root root 0 May 18 11:22 test2.txt -rw-r--r--. 1 root root 0 May 18 11:22 test.txt [root@localhost test]# touch -t 201605171210.20 test.txt [root@localhost test]# ll -rw-r--r--. 1 rootroot 0 May 18 11:11 test1.txt -rw-r--r--.1 root root 0 May 18 11:22 test2.txt -rw-r--r--.1 root root 0 May 17 12:10 test.txt
說明:
-t time 使用指定的時間值 time 作為指定文件相應時間戳記的新值.此處的 time規定為如下形式的十進制數:
[[CC]YY]MMDDhhmm[.SS]
到此,相信大家對“Linux怎么修改文件時間戳”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。