Ce que je fais dans la ligne de commande:
cat file1 file2 file3 > myfile
Ce que je veux faire avec 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()
-une solution basée sur est possible, voir Reproduire la commande unix cat en python