summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-06-03 15:18:17 -0500
committerJesse Luehrs <doy@tozt.net>2013-06-03 15:51:17 -0500
commitec069554b263d4d3a60a315089e170b92badd1d8 (patch)
tree38e4b6cb2196ee0b56aa33c29df3a94c53ad1e20 /bin
parent60f235d03fba8232e7f691550ee715e1cfb9c5b6 (diff)
downloadreply-ec069554b263d4d3a60a315089e170b92badd1d8.tar.gz
reply-ec069554b263d4d3a60a315089e170b92badd1d8.zip
start on some docs
Diffstat (limited to 'bin')
-rw-r--r--bin/reply16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/reply b/bin/reply
index 6703852..3de86de 100644
--- a/bin/reply
+++ b/bin/reply
@@ -2,12 +2,28 @@
use strict;
use warnings;
# PODNAME: reply
+# ABSTRACT: read, eval, print, loop, yay!
use File::HomeDir;
use File::Spec;
use Reply;
+=head1 SYNOPSIS
+
+ reply
+
+=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.
+
+=cut
+
my $cfg = File::Spec->catfile(File::HomeDir->my_home, ".replyrc");
my %args = (config => $cfg);