কমান্ড লাইনে আমি কী করি:
cat file1 file2 file3 > myfile
অজগর নিয়ে আমি কী করতে চাই:
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