This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -17,3 +17,24 @@ Download the latest [release](https://github.com/cdr/coder-cli/releases):
17
17
cd ~ /go/bin
18
18
tar -xvf ~ /Downloads/coder-cli-linux-amd64.tar.gz
19
19
```
20
+
21
+ ## Usage
22
+
23
+ ```
24
+ $ coder --help
25
+ Usage: coder [subcommand] [flags]
26
+
27
+ coder provides a CLI for working with an existing Coder Enterprise installation.
28
+
29
+ Commands:
30
+ envs get a list of active environment
31
+ login authenticate this client for future operations
32
+ logout remote local authentication credentials (if any)
33
+ sh executes a remote command on the environment
34
+ sync establish a one way directory sync to a remote environment
35
+ urls get all development urls for external access
36
+ version print the currently installed CLI version
37
+ config-ssh add your Coder Enterprise environments to ~/.ssh/config
38
+ users used to interact with user accounts
39
+
40
+ ```
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ func (versionCmd) Spec() cli.CommandSpec {
15
15
return cli.CommandSpec {
16
16
Name : "version" ,
17
17
Usage : "" ,
18
- Desc : "Print the currently installed CLI version" ,
18
+ Desc : "print the currently installed CLI version" ,
19
19
}
20
20
}
21
21
You can’t perform that action at this time.
0 commit comments