우노
[Shell Script] Shell Script 에서 Python 실행하는 방법 본문
Operating System/Shell Script
[Shell Script] Shell Script 에서 Python 실행하는 방법
운호(Noah) 2020. 12. 20. 01:50Python 파일 자체를 실행하는 방법
#!/bin/bash
python3 /Users/bdlab/Desktop/test.py
Python 코드를 작성해 실행하는 방법
#!/bin/bash
# EOF 내의 명령어는 python3로 수행됨
python3 - << 'EOF'
print("test")
EOF
'Operating System > Shell Script' 카테고리의 다른 글
[Shell Script] 문자열 포함 여부 확인 방법 (2) | 2021.09.06 |
---|---|
[Shell Script] 문자열 공백 분리 및 요소 접근 방법 (0) | 2021.09.06 |
[Shell Script] 환경 변수 선언 (export) 및 호출 (os.environ) (0) | 2020.12.19 |
[Shell Script] EOF 사용시 에러 (0) | 2020.12.19 |
[Shell Script] 명령 실행 결과를 변수로 저장하는 방법 (0) | 2020.12.08 |
Comments