- or download this
# ... some code here ...
...
=cut
# ... some more code here ...
- 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.
- or download this
$ cat podchecker_test_4.txt
#!/usr/bin/env perl
...
=head1 heading 1
=head2 heading 1.2
- 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.
- or download this
cat podchecker_test_5.txt
#!/usr/bin/env perl
...
whatever
- or download this
$ podchecker podchecker_test_1.txt
podchecker_test_1.txt does not contain any pod commands.
- or download this
cat podchecker_test_1.txt
#!/opt/apps/perl/perl5220/bin/perl
...
print "Line5\n";
=cut
print "Line6\n";
- 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.
- or download this
cat podchecker_test_2.txt
#!/usr/bin/env perl
...
=cut
print "Line6\n";
- or download this
$ podchecker podchecker_test_3.txt
podchecker_test_3.txt pod syntax OK.
- or download this
cat podchecker_test_3.txt
#!/usr/bin/env perl
...
=cut
print "Line6\n";
- or download this
=cut
=cut The documentation ends here.
...