mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-01 14:51:27 -07:00
Because I can't remember which options are supposed to be uppercase and which are not,
rename all of them so we can use non-conflicting lowercase. Manpage updates pending
This commit is contained in:
parent
de1d0011bc
commit
ab17f6f44e
2 changed files with 5 additions and 5 deletions
|
@ -37,10 +37,10 @@ def main(args):
|
|||
parser = base_ans_parser()
|
||||
parser.usage = "ans-command [options] command-to-run"
|
||||
|
||||
parser.add_option('-1', '--one-line', dest='one_line', action='store_true',
|
||||
parser.add_option('-o', '--one-line', dest='one_line', action='store_true',
|
||||
help="output results on one line to make grepping easier, however will \
|
||||
not remove newlines from command output")
|
||||
parser.add_option('-o', '--output-dir', dest='output_dest', default=None,
|
||||
parser.add_option('-t', '--tree', dest='output_dest', default=None,
|
||||
help="if specified, a directory name to save output to, one file per host")
|
||||
|
||||
options, args = parser.parse_args(args)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue