답변:
옵션 touch
과 함께 명령을 사용할 수 있습니다 -t
. 이것은 man touch
:
NAME touch - change file timestamps SYNOPSIS touch [OPTION]... FILE... DESCRIPTION Update the access and modification times of each FILE to the current time. [...] -t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time
예를 들면 :
touch -t 1312031429.30 /path/to/directory
에 대해 수정 된 날짜가로 변경 directory
됩니다 2013-12-03 14:29:30
.
-t
여기 에서 옵션을 사용해야합니다 .-d
최신 버전의 touch에 있는 플래그는 디렉토리의 mtime을 수정하지 않고 파일 만 수정합니다.