home *** CD-ROM | disk | FTP | other *** search
/ Internet 1996 World Exposition / park.org.s3.amazonaws.com.7z / park.org.s3.amazonaws.com / cgi-bin / Japan / ls < prev    next >
Text File  |  2017-09-21  |  227b  |  14 lines

  1. #!/usr/local/bin/perl
  2.  
  3. # non-buffered STDOUT
  4. $| = 1;
  5.  
  6. $dir = $ENV{'QUERY_STRING'};
  7. $mypath = $0;
  8.  
  9. print "Content-Type: text/plain\n\n" ;
  10. print "path = $mypath\n";
  11. print "directory $dir\n\n";
  12. system("/bin/ls -l $dir") ;
  13. exit 0;
  14.