> Does anybody know if there is a better way to allow pipes in 
> the system command in PERL for IIS?
> 
>       system( "echo blah > junk.txt");

How about doing it in Perl instead of in a system command?

open(JUNK, ">junk.txt") or die "$!";
print JUNK $blah;
close JUNK;

-- 
Mark Thomas                    [EMAIL PROTECTED]
Internet Systems Architect     User Technology Associates, Inc.

$_=q;KvtuyboopuifeyQQfeemyibdlfee;; y.e.s. ;y+B-x+A-w+s; ;y;y; ;;print;;
 

_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to