1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/touch.md
코드싸이 72cd98bac3
pwd, touch, mv, mkdir, rmdir, find, exa, eza, cat: add and update Korean translation (#12905)
* pages.ko/pwd,touch,mv,mkdir,rmdir,find,exa,eza: add pages

* cat: reflect en updates in Korean translation
2024-06-09 21:16:11 +09:00

844 B

touch

파일을 생성하고 접근/수정 시간을 설정합니다. 더 많은 정보: https://manned.org/man/freebsd-13.1/touch.

  • 특정 파일 생성:

touch {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 파일의 [a]ccess 또는 [m]odification 시간을 현재 시간으로 설정하고 파일이 없으면 [c]reate 하지 않음:

touch -c -{{a|m}} {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 파일의 [t]ime을 특정 값으로 설정하고 파일이 없으면 [c]reate 하지 않음:

touch -c -t {{YYYYMMDDHHMM.SS}} {{경로/대상/파일1 경로/대상/파일2 ...}}

  • 파일의 타임스탬프를 [r]eference 파일의 타임스탬프로 설정하고 파일이 없으면 [c]reate 하지 않음:

touch -c -r {{경로/대상/참조_파일}} {{경로/대상/파일1 경로/대상/파일2 ...}}