Reputation: 4325
I wonder: In Perl POD is recognized partially by the Perl parser, and there is the __END__
keyword to stop Perl parsing.
If I want to write POD in a shell script (maybe at the end of the script), can that be done, and if so: How?
Upvotes: 0
Views: 101
Reputation: 22227
A dummy here document can be used in the shell to make it ignore the POD contents, while perldoc
will be able to find it.
Like this:
#!/bin/bash
#... usual shell commands here ...
echo "Hello, world"
# POD starts here
: <<'__POD__'
=pod
=head1 NAME
The hello-world program...
Blabla..
=cut
__POD__
Doing a sh podtest
runs the script.
Doing a perldoc podtest
shows the doc.
Newer versions of perldoc
(like 3.28) may require option -F
to find the POD.
Upvotes: 2