Created
April 12, 2013 03:38
-
-
Save ziguzagu/5369149 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # name : perl | |
| # -- | |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use utf8; | |
| use Getopt::Long qw( :config posix_default no_ignore_case gnu_compat ); | |
| use Pod::Usage; | |
| GetOptions(\my %opt, qw( help )); | |
| pod2usage(0) if $opt{help}; | |
| $0 | |
| __END__ | |
| =pod | |
| =head1 NAME | |
| `(buffer-name)` - | |
| =head1 SYNOPSIS | |
| $ `(buffer-name)` [options] | |
| =cut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment