diff --git a/cli/app/cp.go b/cli/app/cp.go index 7d2f09fe..16a6f5d2 100644 --- a/cli/app/cp.go +++ b/cli/app/cp.go @@ -139,4 +139,16 @@ And if you want to copy that file back to your current working directory locally } return nil }, + BashComplete: func(c *cli.Context) { + appNames, err := config.GetAppNames() + if err != nil { + logrus.Warn(err) + } + if c.NArg() > 0 { + return + } + for _, a := range appNames { + fmt.Println(a) + } + }, }