kunsu's archive
이곳은 그냥 나를 위한 개인적인 아카이브입니다 :)
Wednesday, March 6, 2019
python 리눅스 명령어 실행
bash에 익숙하다면 아래와 같이 linux 명령어를 python 내에서 바로 실행할 수 있다.
import os
import sys
os.system ('ls -al | grep "user")
만약 출력된 내용을 얻고자 한다면, subprocess를 이용하면 된다.
import subprocess
result = subprocess.check_output ('./program' , shell=True)
참고:
http://noplanlife.com/?p=949
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment