home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / SLAKWARE / D12 / PERL1.TGZ / perl1.tar / usr / bin / pod2text < prev    next >
Text File  |  1996-06-28  |  139b  |  13 lines

  1. #!/usr/bin/perl
  2.     eval 'exec perl -S $0 "$@"'
  3.     if 0;
  4.  
  5. use Pod::Text;
  6.  
  7. if(@ARGV) {
  8.     pod2text($ARGV[0]);
  9. } else {
  10.     pod2text("<&STDIN");
  11. }
  12.  
  13.