Add caching to naodash_user
[nethack-naodash.git] / naodash
CommitLineData
01ba3ddc
MG
1#!/usr/bin/perl
2use 5.014000;
3use strict;
4use warnings;
5
6use App::NAOdash;
7
8App::NAOdash::run(@ARGV);
9
10__END__
11
12=encoding utf-8
13
14=head1 NAME
15
16naodash - Analyze NetHack xlogfiles and extract statistics (command-line interface)
17
18=head1 SYNOPSIS
19
20 naodash mgv # Show statistics for the mgv user on NAO
21 naodash /path/to/xlogfile # Show statistics for a given xlogfile
22
23=head1 DESCRIPTION
24
25naodash is a command-line interface to L<NetHack::NAOdash>. It takes a
26NAO username or a path to an xlogfile, analyzes it, and prints the
c5cfd5bc 27results of the analysis. A terminal with ANSI escape code support is
01ba3ddc
MG
28required. Do not parse this command's output. For computer-readable
29output, please use the L<NetHack::NAOdash> library directly.
30
49bfce9d
MG
31=head1 ENVIRONMENT
32
33=over
34
35=item NAODASH_CACHE
36
37Path to a directory that should be used to cache xlogfiles downloaded
38from NAO, or the special value 'none' (case-insensitive) to disable
39caching.
40
41By default a directory named 'naodash' in the default temporary
42directory (C<< File::Spec->tmpdir >>) is used.
43
44=back
45
01ba3ddc
MG
46=head1 SEE ALSO
47
48L<NetHack::NAOdash>, L<http://alt.org/nethack/>, L<App::NAOdash>, L<App::Web::NAOdash>
49
50=head1 AUTHOR
51
52Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
53
54=head1 COPYRIGHT AND LICENSE
55
56Copyright (C) 2015 by Marius Gavrilescu
57
58This library is free software; you can redistribute it and/or modify
59it under the same terms as Perl itself, either Perl version 5.20.2 or,
60at your option, any later version of Perl 5 you may have available.
61
62
63=cut
This page took 0.01191 seconds and 4 git commands to generate.