
26.08.2008, 20:16
|
|
Leaders of Antichat - Level 4
Регистрация: 16.01.2006
Сообщений: 1,966
Провел на форуме: 21768337
Репутация:
3486
|
|
Как бы читалка предусмотренная. И единственное что может быть, они не расставили права как следует.
http://miracle.rsmas.miami.edu/modis/projects/viewfile.cgi?file=viewfile.cgi
Код:
#!/usr/local/bin/perl
use CGI;
use CGI::Carp qw(fatalsToBrowser);
$q = new CGI;
$file = $q->param('file');
print $q->header;
print $q->start_html(-title=>"$file",-bgcolor=>'white');
print "<IMG SRC=\"/NS/Asset/notice.gif\">";
print "<HR><p>";
unless (-e $file) { print "no such file: $file" ; exit }
open(FILE,"<$file");
while (<FILE>) {
print " $_ <br>\n";
}
close FILE;
print "<HR> ";
print $q->end_html;
|
|
|