./categories/os
touch 빈파일·시각 갱신
빈 파일 생성 또는 atime/mtime 갱신.
touch file1 # 없으면 생성, 있으면 시각 갱신
touch -a file1 # atime만
touch -m file1 # mtime만
touch -t 202001231122 myfile # [[YYYY]MMDDHHMM[.SS]
관련 링크: https://www.lesstif.com/lpt/linux-touch-105644078.html
./comments