summaryrefslogtreecommitdiff
path: root/src/cssh_options.ggo
blob: 3090e579b0ee53433df8749fa7a7699c2c5eabbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package "cssh"
version "0.0.1"
usage "cssh [options] [user@][hostname] [command]"
description "Execute a command on a set of machines"		

section "Main Options"
	option "long-version" -
		"Full version and credentials"
		optional

	option "verbose" v
		"Increase verbosity level (option can be given many times)"
		optional multiple

	option "login" l
		"Login user (default: current user)"
		string typestr="login_name"
		optional

	option "port" p
		"Port to use for SSH (default: 22)"
		int typestr="port"
		optional
		
	option "hosts-file" H
		"List of hosts to use in parallel (listed one per line in a file)"
		string typestr="hosts-file"
		optional