From 8cd7992388eb3744059c832fcd75e6e9cc185486 Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Thu, 4 Apr 2019 09:06:56 -0700 Subject: [PATCH] Add ls and l alias to list I find myself typing ls often by accident. --- main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 1c00aad6..c218bf20 100644 --- a/main.go +++ b/main.go @@ -217,8 +217,9 @@ func main() { }, { // list prints a list of created clusters - Name: "list", - Usage: "List all clusters", + Name: "list", + Aliases: []string{"ls", "l"}, + Usage: "List all clusters", Flags: []cli.Flag{ cli.BoolFlag{ Name: "all, a",