본문 바로가기
운영체제/리눅스(CentOS)

touch 명령어

by 마루의 일상 2021. 6. 13.
728x90
반응형

파일을 생성하거나 이 미만 들어진 파일의 수정시간을 업데이트한다.

[root@localhost test]# touch testfile [root@localhost test]# ls -al 합계 8 drwxr-xr-x 2 root root 4096 6월 8 15:16 . drwxr-xr-x. 5 root root 4096 6월 8 15:12 .. -rw-r--r-- 1 root root 0 6월 8 15:16 testfile [root@localhost test]#

밑에 ls -al를 보면 시간이 변경될걸 알 수 있다.

[root@localhost test]# touch testfile [root@localhost test]# ls -al 합계 8 drwxr-xr-x 2 root root 4096 6월 8 15:16 . drwxr-xr-x. 5 root root 4096 6월 8 15:12 .. -rw-r--r-- 1 root root 0 6월 8 15:18 testfile [root@localhost test]#



#touch #리눅스명령어 #리눅스

728x90
반응형

'운영체제 > 리눅스(CentOS)' 카테고리의 다른 글

cat 명령어  (0) 2021.06.15
file 명령어  (0) 2021.06.14
ls 명령어  (0) 2021.06.10
cd 명령어  (0) 2021.06.09
pwd 명령어  (0) 2021.06.08