Skip to content

Instantly share code, notes, and snippets.

@ziguzagu
Created April 12, 2013 03:38
Show Gist options
  • Select an option

  • Save ziguzagu/5369149 to your computer and use it in GitHub Desktop.

Select an option

Save ziguzagu/5369149 to your computer and use it in GitHub Desktop.
# 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