Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux修改文件創建時間

Linux修改文件創建時間

日期:2017/2/7 14:36:44      編輯:Linux教程
 

touch [-acfm]
[-r reference-file] [--file=reference-file]
[-t MMDDhhmm[[CC]YY][.ss]]
[-d time] [--date=time] [--time={atime,access,use,mtime,modify}]
[--no-create] [--help] [--version]
file1 [file2 ...]
說明:
touch 指令改變檔案的時間記錄。 ls -l 可以顯示檔案的時間記錄。
參數:
a 改變檔案的讀取時間記錄。
m 改變檔案的修改時間記錄。
c 假如目的檔案不存在,不會建立新的檔案。與 –no-create 的效果一樣。
f 不使用,是為了與其他 unix 系統的相容性而保留。
r 使用參考檔的時間記錄,與 –file 的效果一樣。
d 設定時間與日期,可以使用各種不同的格式。
t 設定檔案的時間記錄,格式與 date 指令相同。
–no-create 不會建立新檔案。
–help 列出指令格式。
–version 列出版本訊息。

范例:
最簡單的使用方式,將檔案的時候記錄改為現在的時間。若檔案不存在,系統會建立一個新的檔案。
touch file
touch file1 file2

將 file 的時間記錄改為 5 月 1 日 16 點 8 分,公元2011年
時間的格式可以參考 date 指令,至少需輸入 MMDDHHmm ,就是月日時與分。
touch -c -t 05011608 file
touch -c -t 050116082011 file
將 file 的時間記錄改變成與 referencefile 一樣。
touch -r referencefile file
將 file 的時間記錄改成 5月1日16點8分,公元2011年
時間可以使用 am, pm 或是 24 小時的格式,日期可以使用其他格式如 1 May 2011。

touch -d 和 date -s 的用法相同。
如果沒有指定日期,默認為系統日期
touch -d 16:08 file
touch -d “16:08″ file
touch -d “4:08pm” file

如果沒有指定時間,默認為 00:00:00
touch -d 20110501 file
touch -d “05/01/2011″ file
touch -d “20110511” file
touch -d “4:08pm 05/01/2011″ file
touch -d “20110501 16:08″ file
touch -d “20110501 16:08:00″ file

Copyright © Windows教程網 All Rights Reserved