docs: short aliases [ci skip]

This commit is contained in:
2021-09-05 01:34:56 +02:00
parent a3a66ef972
commit 317be4cc01
19 changed files with 53 additions and 20 deletions

View File

@ -10,9 +10,13 @@ import (
)
var serverRemoveCommand = &cli.Command{
Name: "remove",
Aliases: []string{"rm", "delete"},
Usage: "Remove a locally-defined server",
Name: "remove",
Aliases: []string{"rm"},
Usage: "Remove a server",
Description: `
This does not destroy the actual server. It simply removes it from Abra
internal bookkeeping so that it is not managed any more.
`,
HideHelp: true,
Action: func(c *cli.Context) error {
server := c.Args().First()