/usr/bin/reply is in libreply-perl 0.38-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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use warnings;
# PODNAME: reply
# ABSTRACT: read, eval, print, loop, yay!
use Reply::App;
exit(Reply::App->new->run(@ARGV));
__END__
=pod
=encoding UTF-8
=head1 NAME
reply - read, eval, print, loop, yay!
=head1 VERSION
version 0.38
=head1 SYNOPSIS
reply [-lb] [-I dir] [-M mod] [--version] [--help] [--cfg file]
=head1 DESCRIPTION
This script runs the L<Reply> shell. It looks for a configuration file in
C<.replyrc> in your home directory, and will generate a basic configuration for
you if that file does not exist.
See the L<Reply> documentation for more information about using and configuring
this program.
=head1 OPTIONS
reply takes these command line options:
=over 4
=item -I lib
Adds the given directory to C<@INC>.
=item -l
Equivalent to C<-I lib>.
=item -b
Equivalent to C<-I blib/lib -I blib/arch>.
=item -M Carp::Always
Loads the specified module before starting the repl. It is loaded within the
repl, so things like exporting work properly.
=item --cfg ~/.replyrc
Specifies a different configuration file to use. C<~/.replyrc> is the default.
=item --version
Displays the program version.
=item --help
Displays usage information.
=back
=head1 AUTHOR
Jesse Luehrs <doy@tozt.net>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2015 by Jesse Luehrs.
This is free software, licensed under:
The MIT (X11) License
=cut
|