Was ich in der Kommandozeile mache:
cat file1 file2 file3 > myfile
Was ich mit Python machen möchte:
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()
-basierte Lösung ist möglich, siehe Reproduzieren des Unix-Cat-Befehls in Python