Những gì tôi làm trong dòng lệnh:
cat file1 file2 file3 > myfile
Những gì tôi muốn làm với 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
os.sendfile()
có thể giải pháp dựa trên cơ sở, hãy xem Tạo lại lệnh mèo unix trong python