touch

새로운 파일을 만들때 사용합니다. 다만 새로 만들어지는 파일은 내용이 없는 파일입니다.

touch 명령어의 또다른 용도는 파일의 최종 수정일을 변경하는 경우에 사용합니다.

아래의 예제를 보면 파일의 최종 수정 시간이 변경된 것을 볼 수 있습니다.

 

[root@localhost test]# ls -l /etc/passwd
-rw-r--r-- 1 root root 1944  5월 31 15:27 /etc/passwd
[root@localhost test]# touch /etc/passwd
[root@localhost test]# ls -l /etc/passwd
-rw-r--r-- 1 root root 1944  5월 31 15:45 /etc/passwd

 

 

'Linux > Linux 명령어' 카테고리의 다른 글

Linux 명령어 mv  (0) 2013.06.02
Linux 명령어 cp  (0) 2013.06.02
linux 명령어 mkdir,rmdir  (0) 2013.06.01
linux 명령어 cd  (0) 2013.06.01
Linux 명령어 ls  (0) 2013.06.01