Home | Mirror | Search

7. touch

創建空檔案,修改檔案日期時間

touch [-acdmt] 檔案
參數:
-a : 僅修改access time。
-c : 僅修改時間,而不建立檔案。
-d : 後面可以接日期,也可以使用 --date="日期或時間"
-m : 僅修改mtime。
-t : 後面可以接時間,格式為 [YYMMDDhhmm]
		
# touch filename		
# touch -d 20050809 filename
# touch -t 0507150202 bashrc
# touch -d "2 days ago" bashrc
# touch --date "2011-06-03" filename
		
comments powered by Disqus