최근 해당 페이지에서 쉘 명령을 실행해야 하는 경우가 있습니다.
첫 번째는 os.system입니다.
코드는 다음과 같습니다.
os.system('cat /proc/cpuinfo')
그런데 인쇄된 페이지를 발견했습니다. 명령 실행 결과는 0 또는 1이며 이는 물론 요구 사항을 충족하지 않습니다.
두 번째 솔루션 os.popen()을 사용해 보세요
코드는 다음과 같습니다.
output = os.popen('cat /proc/cpuinfo') print output.read()
os.popen()을 통해 반환되는 것은 파일 읽기 개체, read입니다. 실행 결과를 보려면 read() 작업을 수행합니다. 단, 프로그램 실행의 반환 값은 읽을 수 없습니다.)
세 번째 해결 방법인 Commands.getstatusoutput()을 사용해 보세요. 반환 값과 출력을 한 가지 방법으로 얻을 수 있어 매우 사용하기 쉽습니다.
코드는 다음과 같습니다.
(status, output) = commands.getstatusoutput('cat /proc/cpuinfo') print status, output
Python 문서에 제공된 예,
코드는 다음과 같습니다.
>>> import commands >>> commands.getstatusoutput('ls /bin/ls') (0, '/bin/ls') >>> commands.getstatusoutput('cat /bin/junk') (256, 'cat: /bin/junk: No such file or directory') >>> commands.getstatusoutput('/bin/junk') (256, 'sh: /bin/junk: not found') >>> commands.getoutput('ls /bin/ls') '/bin/ls' >>> commands.getstatus('/bin/ls') '-rwxr-xr-x 1 root 13352 Oct 14 1994 /bin/ls'
위 내용은 Python에서 쉘 명령을 실행하는 세 가지 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!