Що я роблю в командному рядку:
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
os.sendfile()
можливе рішення, див. Відтворення команди unix cat у python