Py学习  »  Python

使用sed命令的python[复制]

jigarshah • 5 年前 • 1452 次点击  

我在命令行中的操作:

cat file1 file2 file3 > myfile

我想用python做什么:

import subprocess, shlex
my_cmd = 'cat file1 file2 file3 > myfile'
args = shlex.split(my_cmd)
subprocess.call(args) # spits the output in the window i call my python program
Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/40823
 
1452 次点击  
文章 [ 5 ]  |  最新文章 5 年前