原文地址:http://blog.csdn.net/scarlettsp/article/details/4038753
指令名稱:
touch(1) - 更新檔案的時間紀錄說明:
藉由這個指令,我們可以同時或單獨變更檔案的兩種時間紀錄,讀取時間(access time)以及修改時間(modification time)。選項:
- -a
- 更改文件的讀取時間(access time)
- -c, --no-create
- 不建立任何新檔案
- -m
- 更改文件的修改時間(modification time)
- -t STAMP
- 設定"特定時間"來代替"目前時間",格式 [[CC]YY]MMDDhhmm[.ss]
- --help
- 顯示程式用法資訊
- --version
- 顯示程式本身的版本資訊
實例說明:
空檔案
# touch file-touch1 # ls -l total 0 -rw-r--r-- 1 root root 0 7月 9 13:53 file-touch1 # |
# touch -c file-touch2 touch: setting times of `file-touch2': 沒有此一檔案或目錄 # |
指定"特定的時間"作為更新時間。為了舉例的方便,我原封不定地,拷貝一隻已建檔許久的系統程式 -- tcsh
# cp -a /bin/tcsh . # ls --full-time total 288 -rwxr-xr-x 1 root root 288604 週一 6月 25 03:45:26 2001 tcsh # |
# touch -t 200207010800.01 tcsh # ls --full-time total 288 -rwxr-xr-x 1 root root 288604 週一 7月 01 08:00:01 2002 tcsh |
# touch -at 200207022300 tcsh # ls -lu total 288 -rwxr-xr-x 1 root root 288604 7月 2 23:00 tcsh # |
# touch -mt 200206302300 tcsh # ls -l total 288 -rwxr-xr-x 1 root root 288604 6月 30 23:00 tcsh # ls -lu total 288 -rwxr-xr-x 1 root root 288604 7月 2 23:00 tcsh # |