728x90
반응형
Linux활용
-
LINUX Touch 명령어를 통한 날짜 수정하는 방법System of Infra/Linux System 2024. 1. 2. 08:00
LINUX Touch 명령어를 통한 날짜 수정하는 방법 [root@TESTSVR tmp]# touch datechagefile1 [root@TESTSVR tmp]# touch datechagefile2 [root@TESTSVR tmp]# touch datechagefile3 ▶ touch 명령어를 통해서 파일 3개를 생성합니다. [root@TESTSVR tmp]# ls -al | grep -i date -rw-r--r-- 1 root root 0 8월 2 09:16 datechagefile1 -rw-r--r-- 1 root root 0 8월 2 09:18 datechagefile2 -rw-r--r-- 1 root root 0 8월 2 09:19 datechagefile3 ▶ touch 명령어를 통해 생성..