摘要:
最近有个需求就是页面上执行shell命令,第一想到的就是os.system, 代码如下: os.system('cat /proc/cpuinfo') 但是发现页面上打印的命令执行结果 0或者1,当然不满足需求了。 尝试第二种方案 os.popen() 代码如下: (status, output)
阅读全文
posted @ 2017-11-20 22:44
oraser
阅读(5220)
推荐(0)
编辑
摘要:
在shell中常用的特殊符号罗列如下: # ; ;; . , / \\ 'string'| ! $ ${} $? $$ $* \"string\"* ** ? : ^ $# $@ `command`{} [] [[]] () (()) || && {xx,yy,zz,...}~ ~+ ~- & \\
阅读全文
posted @ 2017-11-20 22:32
oraser
阅读(1582)
推荐(0)
编辑