Help for this page

Select Code to Download


  1. or download this
    # ... some code here ...
    
    ...
    =cut
    
    # ... some more code here ...
    
  2. or download this
    $ podchecker podchecker_test_4.txt
    *** ERROR: Apparent command =head2 not preceded by blank line at line 
    +7 in file podchecker_test_4.txt
    podchecker_test_4.txt has 1 pod syntax error.
    
  3. or download this
    $ cat podchecker_test_4.txt
    #!/usr/bin/env perl
    ...
    =head1 heading 1
    =head2 heading 1.2
    
  4. or download this
    $ podchecker podchecker_test_5.txt 
    *** ERROR: =over on line 6 without closing =back at line EOF in file p
    +odchecker_test_5.txt
    podchecker_test_5.txt has 1 pod syntax error.
    
  5. or download this
    cat podchecker_test_5.txt
    #!/usr/bin/env perl
    ...
    
    whatever
    
  6. or download this
    $ podchecker podchecker_test_1.txt
    podchecker_test_1.txt does not contain any pod commands.
    
  7. or download this
    cat podchecker_test_1.txt
    #!/opt/apps/perl/perl5220/bin/perl
    ...
    print "Line5\n";
    =cut
    print "Line6\n";
    
  8. or download this
    $ podchecker podchecker_test_2.txt
    *** ERROR: Spurious =cut command at line 9 in file podchecker_test_2.t
    +xt
    ...
    *** ERROR: Spurious =cut command at line 17 in file podchecker_test_2.
    +txt
    *** ERROR: Spurious =cut command at line 21 in file podchecker_test_2.
    +txt
    podchecker_test_2.txt has 4 pod syntax errors.
    
  9. or download this
    cat podchecker_test_2.txt
    #!/usr/bin/env perl
    ...
    =cut
    
    print "Line6\n";
    
  10. or download this
    $ podchecker podchecker_test_3.txt
    podchecker_test_3.txt pod syntax OK.
    
  11. or download this
    cat podchecker_test_3.txt
    #!/usr/bin/env perl
    ...
    =cut
    
    print "Line6\n";
    
  12. or download this
    =cut
    
    =cut The documentation ends here.
    
    ...