NBash
1#!/bin/bash
2#
3# Bash code goes here
4#
5# exit 0
6
7# : << EOF
8echo -e "
9=pod
10
11=head1 NAME
12
13Here is a brief description of what are script does.
14
15=head1 SYNOPSYS
16
17scriptname [options] argument
18
19=head1 OPTIONS
20
21-h, --help
22Show this message
23
24-f, --foo
25This option does foo
26
27-b, --bar
28This option does bar
29
30=cut
31"
32
33# EOF
34