python 调用linux shell

#!/usr/bin/env python
# -*- coding: utf-8 -*-


import os
import subprocess
import time

'''
a =os.popen('sh','w+')
p.write("ls -l")
p.read()


Time_Now=time.strftime('%Y%m%d',time.localtime(time.time()))

cmd2='script -a /home/neal/Documents/Log_local_terminal/terminal'+Time_Now+'.txt'
print '#',cmd2
p = subprocess.Popen(cmd2,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
'''
subprocess.Popen('ride.py &',shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)

'''

cmd1='cd / ;ls -l'
p = subprocess.Popen('cd / ;ls -l',shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
print '#',cmd1
for line in p.stdout.readlines():
    print line,
retval = p.wait()

cmd='ping -c 4 baidu.com'
w = subprocess.Popen(cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.STDOUT)
print '#',cmd
for line in w.stdout.readlines():
    print line,
retval = w.wait()

'''

常用的几种shell命令调用方式:

#!/usr/bin/env bash 

import os
import commands
import subprocess

# ①-- os.system() --
# execute shell command in sub-terminal and can not get the return result
result1 = os.system('ls -l .')
print('result: ')
print(result1)
print('----------------------------------------')

# ②-- os.popen() --
# execute and can get the return result
result2 = os.popen('ls -l')
# file type
print('type: ', type(result2))

result3 = os.popen('ls -l').readlines()
# list file
print('type: ', type(result3))
print('result: ')
print(result3)
print('----------------------------------------')

#③ -- commands --
# import commands
# method:
#    getoutput
#    getstatusoutput
result4 = commands.getoutput('ls -l')
print('result: ')
print(result4)
print('=======')
result5_status, result5_output = commands.getstatusoutput('ls -l')
print('status: ', result5_status)
print('output: ')
print(result5_output)
print('----------------------------------------')



# ④subprocess
# import subprocess
# method:
#    call(["cmd","arg1", "arg2"], shell=True) refer to os.system()
#   Popen("cmd", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) refer to os.popen
#
#result6 = subprocess.call("ls -l", shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p = subprocess.Popen('ls *.txt', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
print(p.stdout.readlines())

for line in p.stdout.readlines():
    print line,

## wait for child process to terminate, and turn returncode
retval = p.wait()
##  if ok, return 0
print(retval)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • linux资料总章2.1 1.0写的不好抱歉 但是2.0已经改了很多 但是错误还是无法避免 以后资料会慢慢更新 大...
    数据革命阅读 14,185评论 2 33
  • Shell简介 Shell会执行用户输入的命令,并且在屏幕上显示执行的结果。 单从字面的意思上理解,Shell的本...
    故事狗阅读 5,770评论 2 10
  • 为何叫做 shell ? shell prompt(PS1) 与 Carriage Return(CR) 的关系?...
    Zero___阅读 8,368评论 3 49
  • 这是我第一次尝试使用双拼输入法翻译一篇日本的Liunx基础教材上的一章。共花费一周左右。 shell的使用 前言 ...
    今後次阅读 4,645评论 0 4
  • 这周带两条狗狗过来了,每天就带着狗狗散步。上班就关在屋里还是多可怜的不是吗。早晨去走一走,晚上再走一走,狗狗也高兴...
    晓宇如风阅读 1,410评论 0 0