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