-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc.go
48 lines (48 loc) · 1.12 KB
/
doc.go
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// usage: ssh-reg [<flags>] <command> [<args> ...]
//
// ssh-reg is a program to manage a user's ssh config file.
//
// Flags:
// --help Show context-sensitive help (also try --help-long and --help-man).
// --version Show application version.
//
// Commands:
// help [<command>...]
// Show help.
//
//
// add [<flags>] <host> <hostname>
// Add host entry.
//
// -i, --identity=IDENTITY The path to the identity key file.
// -u, --user=USER The SSH user.
// -f, --force Overwrite the specified host.
// -e, --extra=EXTRA Add Extra Keyword.
//
// copy <source> <destination>
// Copy host entry.
//
//
// describe <host>
// Describe host entry.
//
//
// list
// List all available host entries.
//
//
// move <source> <destination>
// Rename host entry.
//
//
// remove <host>
// Remove host entry.
//
//
// update [<flags>] <host> [<hostname>]
// Update host entry.
//
// -i, --identity=IDENTITY The path to the identity key file.
// -u, --user=USER The SSH User.
// -e, --extra=EXTRA Keyword=Value.
package main