mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 15:17:45 +00:00
Userland: Write some '--help' descriptions where appropriate
This commit is contained in:
parent
52a8062084
commit
4ec77ba929
32 changed files with 47 additions and 4 deletions
|
@ -42,6 +42,9 @@ int main(int argc, char** argv)
|
|||
const char* path = nullptr;
|
||||
|
||||
Core::ArgsParser args_parser;
|
||||
args_parser.set_general_help(
|
||||
"Disassemble an executable, and show human-readable "
|
||||
"assembly code for each function.");
|
||||
args_parser.add_positional_argument(path, "Path to i386 binary file", "path");
|
||||
args_parser.parse(argc, argv);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue