Leser: 1
![]() |
|< 1 2 >| | ![]() |
14 Einträge, 2 Seiten |
system ("/usr/bin/php /my/path/foo/bar/test.php?option1=test&option2=noch%20ein%20test");
1
2
3
4
5
my $PHPplugin = "/usr/bin/php /my/path/foo/bar/test.php?option1=test&option2=noch%20ein%20test";
open( DATA, "$PHPplugin" );
# irgendein Quark...
close( DATA );
1
2
3
4
5
6
7
# In Shell:
dmesg | sort # Pipe kommt nach dmesg, aber vor sort
# In Perl:
open IN, "dmesg |"; # Pipe kommt nach dmesg
open OUT, "| sort"; # Pipe kommt vor sort
print OUT <IN>
![]() |
|< 1 2 >| | ![]() |
14 Einträge, 2 Seiten |