summaryrefslogtreecommitdiffhomepage
path: root/runsc/cmd
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-05-16 03:10:09 +0000
committergVisor bot <gvisor-bot@google.com>2020-05-16 03:10:09 +0000
commitc91c8fb48be452a8b40b3ef406bd8b0022359399 (patch)
treeaf7d6820964c8f8fa680e5acbffebabb0c35c471 /runsc/cmd
parent314aa01198a8aa1ceefde004b7ec4fbf86bdedc5 (diff)
parent420b791a3d6e0e6e2fc30c6f8be013bce7ca6549 (diff)
Merge release-20200511.0-251-g420b791 (automated)
Diffstat (limited to 'runsc/cmd')
-rw-r--r--runsc/cmd/help.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/runsc/cmd/help.go b/runsc/cmd/help.go
index c7d210140..cd85dabbb 100644
--- a/runsc/cmd/help.go
+++ b/runsc/cmd/help.go
@@ -65,16 +65,10 @@ func (h *Help) Execute(ctx context.Context, f *flag.FlagSet, args ...interface{}
switch f.NArg() {
case 0:
fmt.Fprintf(h.cdr.Output, "Usage: %s <flags> <subcommand> <subcommand args>\n\n", h.cdr.Name())
- fmt.Fprintf(h.cdr.Output, `runsc is a command line client for running applications packaged in the Open
-Container Initiative (OCI) format. Applications run by runsc are run in an
-isolated gVisor sandbox that emulates a Linux environment.
+ fmt.Fprintf(h.cdr.Output, `runsc is the gVisor container runtime.
-gVisor is a user-space kernel, written in Go, that implements a substantial
-portion of the Linux system call interface. It provides an additional layer
-of isolation between running applications and the host operating system.
-
-Functionality is provided by subcommands. For additonal help on individual
-subcommands use "%s %s <subcommand>".
+Functionality is provided by subcommands. For help with a specific subcommand,
+use "%s %s <subcommand>".
`, h.cdr.Name(), h.Name())
h.cdr.VisitGroups(func(g *subcommands.CommandGroup) {