minor doc update

This commit is contained in:
Tessa Nordgren 2019-03-28 20:07:29 +00:00
parent b4394c67ed
commit 8e5b2c53ad

View File

@ -1,11 +1,9 @@
#!/usr/bin/python #!/usr/bin/python
# A cssh replacement written in Python / GTK. # A cssh replacement written in Python / GTK.
# (c)2012-2017 - Tessa Nordgren <tessa@sudo.ca>. # (c)2012-2019 - Tessa Nordgren <tessa@sudo.ca>.
# Released under the GPL, version 3: http://www.gnu.org/licenses/ # Released under the GPL, version 3: http://www.gnu.org/licenses/
# Requires: python-gtk2 python-vte
import sys import sys
import math import math
import json import json
@ -434,7 +432,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(
description="Connect to multiple hosts in parallel.", description="Connect to multiple hosts in parallel.",
usage="%(prog)s [OPTIONS] [--] HOST [HOST ...]", usage="%(prog)s [OPTIONS] [--] HOST [HOST ...]",
epilog="* NOTE: You can pass options to ssh if you add '--' before your list of hosts") epilog="* NOTE: options before '--' will be passed directly to the SSH client.")
parser.add_argument("--ssh", "-s", dest='ssh', default="/usr/bin/ssh", parser.add_argument("--ssh", "-s", dest='ssh', default="/usr/bin/ssh",
help="specify the SSH executable to use (default: %(default)s)") help="specify the SSH executable to use (default: %(default)s)")
parser.add_argument("--hosts-file", "-f", dest='hosts_file', default="", parser.add_argument("--hosts-file", "-f", dest='hosts_file', default="",