/usr/bin/nopaste is in libapp-nopaste-perl 0.33-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/usr/bin/env perl
use strict;
use warnings;
use App::Nopaste::Command;
if (my $url = App::Nopaste::Command->new_with_options->run) {
print $url;
print "\n";
}
__END__
=head1 NAME
nopaste - command-line utility to nopaste
=head1 DESCRIPTION
See the documentation of L<App::Nopaste::Command>.
=cut
|