kkamagi's story

IT, 정보보안, 포렌식, 일상 공유

Programming

python bash 쉘 실행하기(스크립트)

까마기 2017. 8. 7. 17:48
728x90
반응형

  1 #!/usr/bin/env python

  2 

  3 import shlex

  4 import threading

  5 import subprocess

  6 

  7 class MyClass(threading.Thread):

  8         def __init__(self):

  9                 self.stdout = None

 10                 self.stderr = None

 11                 threading.Thread.__init__(self)

 12 

 13         def run(self):

 14                 p = subprocess.Popen('sh /root/VT_check/vt_extract.sh',shell=True)

 15                 self.stdout, self.stderr = p.communicate()

 16 

 17 myclass = MyClass()

 18 myclass.start()

 19 myclass.join()

 20 print myclass.stdout

반응형

'Programming' 카테고리의 다른 글

web log 수집  (0) 2018.05.01
리스트 안에 딕셔너리에서 원하는 값 추출하기  (0) 2017.09.21
파이썬 스크립트 크론탭(crontab) 등록  (0) 2017.05.26
Octopress 설치하기  (0) 2017.03.02
[문자열]-1 (정리필요)  (0) 2017.02.20