Skip to content

Commit ca6fa2e

Browse files
author
rootware
committed
more helpful help menu
1 parent 1049b3e commit ca6fa2e

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

pyredactkit/pyredactkit.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@ def main():
3737
parser.add_argument(
3838
"file",
3939
nargs="+",
40-
help="""Path of a file or a directory of files"""
40+
help="""
41+
Path of a file or a directory of files
42+
Usage: pyredactkit [file/filestoredact]"""
4143
)
4244
parser.add_argument(
4345
"-u",
4446
"--unredact",
4547
help="""
4648
Option to unredact masked data.
47-
pyredactkit [redactedfile] -u [.hashshadow.json]
49+
Usage: pyredactkit [redactedfile] -u [.hashshadow.json]
4850
"""
4951
)
5052
parser.add_argument(
@@ -56,12 +58,16 @@ def main():
5658
emails,
5759
ipv4,
5860
ipv6,
59-
base64"""
61+
base64
62+
Usage: pyredactkit [file/filestoredact] -t ip"""
6063
)
6164
parser.add_argument(
6265
"-d",
6366
"--dirout",
64-
help="Output directory of the file"
67+
help="""
68+
Output directory of the file
69+
Usage: pyredactkit [file/filestoredact] -d [redacted_dir]
70+
"""
6571
)
6672
parser.add_argument(
6773
'-r',

0 commit comments

Comments
 (0)