그냥 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]
'Linux' 카테고리의 다른 글
[Linux] 하드디스크 정보확인 (SATA/IDE) - hdparm (0) | 2013.03.26 |
---|---|
ProFTPD ip 차단 [proftpd ip block] (0) | 2012.12.13 |
vi / vim 단축키 모음 (0) | 2012.07.15 |
tar 분할압축 (0) | 2012.01.06 |
[Bash] shell 에서 변수에 문자열 이어붙이기 (bash, shell, concatenate, string) (0) | 2011.12.27 |