-
Python <<< redirect errorPython 2015. 9. 3. 02:08
subprocess를 사용해야한다.
기본적으로 /bin/sh 쉘에서는 해당 리다이렉트가 되지않기때문에 아래와같이 소스를 짜면된다.
def bash_command(cmd):
subprocess.Popen(cmd, shell=True, executable='/bin/bash')
함수를 하나만들어준다.
cmd = "gdb -q file <<< "disas main"
bash_command(cmd)
정상적으로 실행된다.
/bin/bash가 관건
'Python' 카테고리의 다른 글
make pyc (0) 2015.10.14 명령실행후 결과값 split하기 (0) 2015.09.06 PE Viewer Python 오픈소스 (0) 2015.08.06 DLL Injector (4) 2015.01.28 Download from URL (0) 2015.01.22