系統管理
1752565 會員
5780 線上
108788 解決方案
發表新文章

檔案的 time stamp 如何更改

 
watermelonyu
教授

檔案的 time stamp 如何更改

有人知道嗎 ? 可以用什麼指令更改呢 ??
2則回覆 2
watermelonyu
教授

檔案的 time stamp 如何更改

#man touch

#touch MMDDhhmm filename



::example::

root@test /tmp/test> prealloc myfile 1000

root@test /tmp/test> ll

total 2

-rw-rw-rw- 1 root sys 1000 Jun 25 21:17 myfile

root@test /tmp/test> date

Sat Jun 25 21:17:57 EAT 2005

root@test /tmp/test> touch 04300000 myfile

root@test /tmp/test> ll

total 2

-rw-rw-rw- 1 root sys 1000 Apr 30 00:00 myfile

root@test /tmp/test>
watermelonyu
教授

檔案的 time stamp 如何更改

行了, 原來用 touch 指令可以改啊, 謝啦