|< 1 2 >| | 15 Einträge, 2 Seiten |
system q(Pfad/Programm >& Datei.txt 2>&1 &);
1
2
3
4
5
6
7
8
9
10
11
12
13
# usr/bin/perl -w
my $datei = "Datei.txt";
my $com;
# Das funktioniert
#system q(/usr/bin/mozilla >& Datei.txt 2>&1 &);
# Das jedoch nicht!
$com = '"/usr/bin/mozilla" , ">&" , "' . $datei . '" , "2>&1" , "&"';
system q("$com")
#system q('"/usr/bin/mozilla" , ">&" , "' Datei.txt '" , "2>&1" , "&"');
system q('"/usr/X11R6/bin/mozilla",">&","Datei.text","2>&1","&"');
1
2
3
4
# entweder listenform:
system ('command', 'arg1', 'arg2', ...);
# oder
system('command arg1 arg2 ...');
system ('/usr/bin/mozilla Fehler_test.txt 2>&1');
system ('/usr/bin/mozilla >& Fehler_test.txt 2>&1');
system ("$com" , "$arg" , ">" , "$output" , "2>&1");
system ("$com $arg > $output 2>&1");
|< 1 2 >| | 15 Einträge, 2 Seiten |