chmod +x
- 특정 파일에 실행권한을 주고 싶을때
chmod +x 해당 파일
ubuntu@back-test:~$ ls -l
total 1
-rw-rw-r-- 1 ubuntu ubuntu 1038 Feb 13 10:26 del_router.sh
chmod +x del_router.sh
입력 후
ubuntu@back-test:~$ ls -l
total 1
-rwxrwxr-x 1 ubuntu ubuntu 1038 Feb 13 10:26 del_router.sh
-rw-rw-r--
에서-rwxrwxr-x
로 변경되면서del_router.sh
파일 실행 가능
Comments