diff options
| author | jakob <jakob@memeware.net> | 2017-08-30 21:36:20 -0400 |
|---|---|---|
| committer | jakob <jakob@memeware.net> | 2017-08-30 21:36:20 -0400 |
| commit | ea82e4f3f9187fe90c9f9d8c3c3eb6de59d0a63c (patch) | |
| tree | bdcd586a4c875db8dea2c611e99bac19238cb7eb /hypodermic/main.py | |
| parent | ede6bb6dd1002ff259381bd5620a792bd7dcb8b6 (diff) | |
Improved interface for getting a process RTLD
Diffstat (limited to 'hypodermic/main.py')
| -rw-r--r-- | hypodermic/main.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hypodermic/main.py b/hypodermic/main.py index 0f77de5..635e3a7 100644 --- a/hypodermic/main.py +++ b/hypodermic/main.py @@ -55,9 +55,14 @@ def main(): usage="%(prog)s [-a pid] [-c path] [options]", description="Don't share needles, brah!" ) + parser._positionals.title = "Positional Arguments" parser._optionals.title = "Optional Arguments" parser.add_argument( + "target", + help="The target shared object to inject." + ) + parser.add_argument( "-q", "--quiet", help="Suppress everything but critical output" |