This file is indexed.

/usr/bin/nopaste is in libapp-nopaste-perl 0.96-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
22
23
24
25
26
27
#!/usr/bin/perl
use strict;
use warnings;
use App::Nopaste::Command;

if (my $url = App::Nopaste::Command->new_with_options->run) {
    print $url;
    print "\n";
}

__END__

=pod

=head1 NAME

nopaste - command-line utility to nopaste

=head1 VERSION

version 0.96

=head1 DESCRIPTION

See the documentation of L<App::Nopaste::Command>.

=cut