/usr/bin/podspell is in libpod-spell-perl 1.01-2.
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 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
require 5; # Time-stamp: "2001-10-27 00:08:46 MDT"
use strict;
use Pod::Spell;
if(@ARGV) { # iterate over files, sending to STDOUT
foreach my $x (@ARGV) {
Pod::Spell->new->parse_from_file($x, '-');
}
} else { # take from STDIN, send to STDOUT
Pod::Spell->new->parse_from_filehandle();
}
__END__
|