by Devin Yang

建立于: 6年前 ( 更新: 6年前 )

最简化版本的Python系统命令运行范本

#!/usr/local/bin/python3
# -*- coding: utf-8 -*-
from subprocess import Popen, PIPE, STDOUT
#运行的命令
command='ls -l'.split()
proc=Popen(command , stdout=PIPE,stderr=PIPE, universal_newlines=True);
output, error = proc.communicate()

#显示运行结果
if(proc.poll()==0):
     print(output)
else:
     print("{} Error\n".format(error))


 

Tags:

Devin Yang

文章内容无法一一说明,如果您有什么不了解处,欢印提问哦:)

No Comment

Post your comment

需要登入才可留言!

类似文章


ddns,pppoe

真正免费DDNS服务

如果您需要使用DDNS,网络上太多家都是假免费的DDNS,真的可以试试这家,真正免费又好设置。https://www.duckdns.org/DDNS又称为动态DNS,可以让我们的浮动IP取得一个域名。这样就能透过域名来访问我们浮动IP的主机。

laravel

在laravel中自定义自己的helper

在Laravel的框架中,包含了相当大量的PHP功能(php functions),称为helper。 https://laravel.com/docs/5.6/helpers 那我们要如何在Laravel中自定义自己的helper呢,其实相当简单呢.. 在composer.json中autoload内的files新建即可。

sort

如何在command line列出第一层的文件大小?

如使创建一个duf别名,用命令,显示第一层的数据夹及文件大小?