1: 2: 3: 4: 5: 6: 7: 8:
vom Subprozeßimport Popen Name = „test.txt“ outfile = öffnen (Namens, „w ") Befehl = [„ls“, „- L“] sub_proc = Popen (Befehl, stdout=outfile) sub_proc.wait () # Wartezeit bis Subprozeß ist fertig outfile.close ()