We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e931b7d commit 771a3d0Copy full SHA for 771a3d0
osg-comanage-project-usermap.py
@@ -20,6 +20,7 @@
20
-f passfile specify path to file to open and read PASS
21
-e ENDPOINT specify REST endpoint
22
-o outfile specify output file (default: write to stdout)
23
+ -h display this help text
24
25
PASS for USER is taken from the first of:
26
1. -u USER:PASS
@@ -149,6 +150,7 @@ def parse_options(args):
149
150
passfile = None
151
152
for op, arg in ops:
153
+ if op == '-h': usage()
154
if op == '-u': options.user = arg
155
if op == '-d': passfd = int(arg)
156
if op == '-f': passfile = arg
0 commit comments