os.system()과
commands.getoutput()
전자는 그냥 리눅스 명령을 실행합니다.
후자는 실행하고 나서 그것의 결과를 되돌려 주는 함수입니다.
#!/bin/usr/python
import os
import commands
os.system("ls -al")
pwd=commands.getoutput("pwd")
'Python_Study' 카테고리의 다른 글
Flask 정리 (0) | 2015.02.05 |
---|---|
52장 카드만들기 (0) | 2014.08.20 |
[python] xlwt - Excel 생성 모듈 (0) | 2014.01.09 |
[python] List (0) | 2013.12.17 |
python 변수 데이터 type (0) | 2013.12.10 |