kb2yht has asked for the wisdom of the Perl Monks concerning the following question:
myscript.pl
#!/usr/local/bin/perl -W use CGI qw/:all/; my $query = CGI::new(); my $file = $query->path_info(); open ( IMAGE, $file ); while ( <IMAGE> ) { print $_; } exit ;
|
---|
Replies are listed 'Best First'. | |
---|---|
(ar0n) Re: Not Strictly A perl question.
by ar0n (Priest) on Jun 30, 2001 at 22:34 UTC | |
Re: Not Strictly A perl question.
by jepri (Parson) on Jun 30, 2001 at 22:35 UTC | |
by Zaxo (Archbishop) on Jul 01, 2001 at 00:19 UTC | |
Re: Not Strictly A perl question.
by bikeNomad (Priest) on Jun 30, 2001 at 22:27 UTC | |
Re: Not Strictly A perl question.
by epoptai (Curate) on Jun 30, 2001 at 22:50 UTC | |
Re: Not Strictly A perl question.
by Beatnik (Parson) on Jun 30, 2001 at 22:28 UTC | |
Re: Not Strictly A perl question.
by kb2yht (Acolyte) on Jul 07, 2001 at 19:10 UTC |