better documentation re: how to pass in args

This commit is contained in:
cktricky
2018-04-16 13:41:37 -04:00
parent 099707ae29
commit 581dea9cbc

View File

@@ -24,7 +24,7 @@ parser.add_argument("-s", "--step", help="list the step you would like to run",
action="store", type=str, required=True)
parser.add_argument("-t", "--target", help="Give your target a name so we can track results",
action="store", type=str, required=True)
parser.add_argument("-a", "--arguments", help="Give your target a name so we can track results",
parser.add_argument("-a", "--arguments", help="Provide a list of arguments, comma separated. Ex: arg1,arg2,arg3",
action="store", type=str, required=False)
parser.add_argument("-l", "--list", help="list steps", action="store_true")
parser.add_argument("-v", "--verbosity", help="increase output verbosity",