dir -> ls (#438)

This commit is contained in:
Michael Quigley 2024-01-11 11:50:25 -05:00
parent badff9bd2c
commit fcb156d650
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -23,9 +23,9 @@ type dirCommand struct {
func newDirCommand() *dirCommand {
cmd := &cobra.Command{
Use: "dir <target>",
Short: "List the contents of <target> ('http://', 'zrok://', and 'file://' supported)",
Aliases: []string{"ls"},
Use: "ls <target>",
Short: "List the contents of drive <target> ('http://', 'zrok://', and 'file://' supported)",
Aliases: []string{"dir"},
Args: cobra.ExactArgs(1),
}
command := &dirCommand{cmd: cmd}