home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 April / VPR0004A.BIN / OLS / HTMLLINT / htmllint.lzh / htmllint < prev    next >
Text File  |  1998-09-18  |  355b  |  17 lines

  1. #!/usr/local/bin/perl
  2.  
  3. # Another HTML-lint ###########################################
  4.  
  5. use File::Basename;
  6. push @INC => [&fileparse($0)]->[1];
  7.  
  8. # $add_options = '-noscore -pedantic etc...';
  9.  
  10. if ($add_options) {
  11.   require 'shellwords.pl';
  12.   unshift @ARGV => &shellwords($add_options);
  13. }
  14.  
  15. require 'htmllint.pm';
  16. &htmllint::HTMLlint(@ARGV);
  17.