分类: LINUX
2009-03-23 11:29:59
# 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': 沒有此一檔案或目錄 # |
# 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 # |