develog

[Linux] 파일 날짜 변경, touch 본문

OS & Shell/Linux

[Linux] 파일 날짜 변경, touch

냐옴 2018. 3. 7. 11:09

파일 생성

touch aa.txt 


access time 변경 (-t YYYYMMDDhhmm.ss)

touch -a -t 201803010101.00 aa.txt


modify time 변경 (-t YYYYMMDDhhmm.ss)

touch -m -t 201803010101.00 aa.txt


'OS & Shell > Linux' 카테고리의 다른 글

[Linux] ps kill  (0) 2019.03.28
[Linux] 파일 수정일자로 삭제  (0) 2018.03.07
[bash] find tomcat & exec  (0) 2017.11.23
[Linux] 명령어 같이 실행  (0) 2017.11.23
[Linux] 시스템 정보 확인  (0) 2017.10.18
Comments