Here is a question, I am on win32 using active state perl. Lets say I create a simple perl script called test.pl:
and I want to pass arguments to the perl script test.pl via a pipe.
Can I do somthing like this????
I get an error when I do this that "The process tried to write to a nonexistent pipe". Can this be done?
Thanks
-T
-How important does a person have to be before they are considered assassinated instead of just murdered?
-Need more cow bell!!!
Code:
my($test) = @ARGV;
chomp($test);
print $test;
and I want to pass arguments to the perl script test.pl via a pipe.
Can I do somthing like this????
Code:
echo HI | test.pl
I get an error when I do this that "The process tried to write to a nonexistent pipe". Can this be done?
Thanks
-T
-How important does a person have to be before they are considered assassinated instead of just murdered?
-Need more cow bell!!!