From fcb156d650c5282c0c16d5a49843298c0307a533 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Thu, 11 Jan 2024 11:50:25 -0500 Subject: [PATCH] dir -> ls (#438) --- cmd/zrok/{dir.go => ls.go} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename cmd/zrok/{dir.go => ls.go} (91%) diff --git a/cmd/zrok/dir.go b/cmd/zrok/ls.go similarity index 91% rename from cmd/zrok/dir.go rename to cmd/zrok/ls.go index 437700d4..737fb941 100644 --- a/cmd/zrok/dir.go +++ b/cmd/zrok/ls.go @@ -23,9 +23,9 @@ type dirCommand struct { func newDirCommand() *dirCommand { cmd := &cobra.Command{ - Use: "dir ", - Short: "List the contents of ('http://', 'zrok://', and 'file://' supported)", - Aliases: []string{"ls"}, + Use: "ls ", + Short: "List the contents of drive ('http://', 'zrok://', and 'file://' supported)", + Aliases: []string{"dir"}, Args: cobra.ExactArgs(1), } command := &dirCommand{cmd: cmd}