우노
[Shell Script] Shell Script 생성 및 실행 방법 본문
쉘 스크립트 파일 생성
sudo vi [test.sh](http://test.sh/)
쉘 스크립트 작성
#!/bin/bash
echo "test"
쉘 스크립트 파일 권한 수정
sudo chmod 755 test.sh
쉘 스크립트 파일 실행
./test.sh
'Operating System > Shell Script' 카테고리의 다른 글
[Shell Script] 환경 변수 선언 (export) 및 호출 (os.environ) (0) | 2020.12.19 |
---|---|
[Shell Script] EOF 사용시 에러 (0) | 2020.12.19 |
[Shell Script] 명령 실행 결과를 변수로 저장하는 방법 (0) | 2020.12.08 |
[Shell Script] Shell Script 에서 csv 파일 읽기 (0) | 2020.12.06 |
[Shell Script] 기본 문법 (1) | 2020.07.07 |
Comments