1Reply::App(3) User Contributed Perl Documentation Reply::App(3)
2
3
4
6 Reply::App - command line app runner for Reply
7
9 version 0.42
10
12 use Reply::App;
13 exit(Reply::App->new->run(@ARGV));
14
16 This module encapsulates the various bits of functionality related to
17 running Reply as a command line application.
18
20 new
21 Returns a new Reply::App instance. Takes no arguments.
22
23 run(@argv)
24 Parses the argument list given (typically from @ARGV), along with the
25 user's configuration file, and attempts to start a Reply shell. A
26 default configuration file will be generated for the user if none
27 exists.
28
29 generate_default_config($file)
30 Generates default configuration file as per specified destination.
31
32 usage($exitcode)
33 Prints usage information to the screen. If $exitcode is 0, it will be
34 printed to "STDOUT", otherwise it will be printed to "STDERR".
35
36 version($exitcode)
37 Prints version information to the screen. If $exitcode is 0, it will be
38 printed to "STDOUT", otherwise it will be printed to "STDERR".
39
41 Jesse Luehrs <doy@tozt.net>
42
44 This software is Copyright (c) 2016 by Jesse Luehrs.
45
46 This is free software, licensed under:
47
48 The MIT (X11) License
49
50
51
52perl v5.32.1 2021-01-27 Reply::App(3)