8 Einträge, 1 Seite |
1
2
3
4
5
use Proc::Background;
my $path = "C:\Programme\Internet Explorer\iexplore.exe";
my $proc1 = Proc::Background->new($path);
no executable program located at C:\Programme\Internet
C:\Benutzer\Kai>perl -MProc::Background -e "Proc::Background->new('C:\Programme\Internet Explorer\IEXPLORE.EXE','')"
1
2
3
4
5
$ perl -Mwarnings -le 'print "C:\Programme\Internet Explorer\iexplore.exe"'
Unrecognized escape \P passed through at -e line 1.
Unrecognized escape \I passed through at -e line 1.
Unrecognized escape \i passed through at -e line 1.
C:ProgrammeInternet Exploreriexplore.exe
find ... -print0 | xargs -0 ...
8 Einträge, 1 Seite |