1 /** 2 Copyright: Copyright (c) 2017, Joakim Brännström. All rights reserved. 3 License: MPL-2 4 Author: Joakim Brännström (joakim.brannstrom@gmx.com) 5 6 This Source Code Form is subject to the terms of the Mozilla Public License, 7 v.2.0. If a copy of the MPL was not distributed with this file, You can obtain 8 one at http://mozilla.org/MPL/2.0/. 9 10 Command Line Interface functionality and text to display help for the user. 11 */ 12 module application.cli_help; 13 14 enum string mainOptions = `usage: 15 dextool <command> [options] [<args>...] 16 17 options: 18 -h, --help show this global help 19 -d, --debug turn on debug output for detailed tracing 20 --version print the version of dextool 21 --plugin-list print a list of plugins 22 23 commands: 24 help 25 `; 26 27 enum string basicHelp = " 28 -h, --help show this help 29 "; 30 31 enum string commandGrouptHelp = " 32 33 See 'dextool <command> -h' to read about a specific subcommand. 34 ";