그냥 touch 명령어에 옵션을 붙여서 해주면 됨.



// /tmp/test 라는 파일 생성. filemtime 은 현재시각

[root@localhost:/tmp]# touch ./test 

// /tmp/test 파일의 filemtime 을 2012년 1월 1일 00시 01분 59초로 수정

[root@localhost:/tmp]# touch -m -t 201201010001.59 ./test




몇가지 옵션이 있음.


-a access time 만 수정

-m modification time 만 수정

-t 현재 시간말고 지정 포맷의 시간으로 변경 YYMMDDhhmm[.ss]






Posted by bloodguy
,