|< 1 2 >| | 11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
if (fork == 0 ) {
print "elem:\n $elem\n";
### $elem looks like http-string below
#http://www.mobile.de/SIDUXnSMwjASJfhgZ4t-.0eNg-t-vaNexlCsAsK%F3P~BmSB10LsearchPublicJ1070052814A1LsearchPublicIMotorhomeS-t-vpLtt~BmPA1B20A0/cgi-bin/da.pl?bereich=womo&id=11111111129267353
### windows
$a="file://d:/aaa_perl_win/$elem";
$a="file://d:/aaa_perl_win/$elem";
$a="file://d:/aaa_perlwin/aaafile.html";
#system ("start iexplore.exe file://d:/aaa_perlwin/aaafile.html");
#system ("start iexplore.exe $elem");
#exec("start iexplore.exe file://d:/aaa_perlwin/aaafile.html"); ### works but perl-programm ends
exec("start iexplore.exe", "http://www.mobile.de/SIDUXnSMwjASJfhgZ4t-.0eNg-t-vaNexlCsAsK%F3P~BmSB10LsearchPublicJ1070052814A1LsearchPublicIMotorhomeS-t-vpLtt~BmPA1B20A0/cgi-bin/da.pl?bereich=womo&id=11111111129267353");
#exec('start iexplore.exe "$elem" ');
### unix
#exec("konqueror",$elem); ###works with linux
CORE::exit(1);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use Win32::Process;
use Win32;
if ( (defined $browser) && ($browser =~ /moz/i) ) {
Win32::Process::Create( my $ProcessObj,
"D:\\winxp\\MozillaFirebird\\MozillaFirebird-07\\MozillaFirebird.exe",
"MozillaFirebird $elem",
0, NORMAL_PRIORITY_CLASS, ".") || die ErrorReport();
} else {
Win32::Process::Create( my $ProcessObj,
"C:\\Programme\\Internet Explorer\\iexplore.exe",
"iexplore $elem",
0, NORMAL_PRIORITY_CLASS, ".") || die ErrorReport();
}
1
2
3
4
5
6
set arg1=eins
set arg2="d:\sounds\ringin.wav"
set arg3="d:\mei sounds\ringin.wav"
perl mei_prog.pl %arg1% %arg2% %arg3%
pause
Quote1. Weiss jemand wie man im bat-file Kommentare macht ??
Quote2. Bei arg3 funkts nicht weil da ein space im Pfad ist. Weiss jemand wies richtig geht ??
|< 1 2 >| | 11 Einträge, 2 Seiten |