Created
May 20, 2016 00:42
-
-
Save karenetheridge/bbe90d7fc5d3e6831e43b33a89f4c365 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
# PODNAME: command-line utility to nopaste | |
use App::Nopaste::Command; | |
if (my $url = App::Nopaste::Command->new_with_options->run) { | |
print $url; | |
print "\n"; | |
} | |
__END__ | |
=pod | |
=head1 DESCRIPTION | |
See the documentation of L<App::Nopaste::Command>. | |
=cut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment