mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-20 07:37:55 +08:00
refactor
This commit is contained in:
@@ -19,6 +19,10 @@ var (
|
|||||||
|
|
||||||
func RunShell(options ShellOptions) {
|
func RunShell(options ShellOptions) {
|
||||||
|
|
||||||
|
sort.Slice(Commands, func(i, j int) bool {
|
||||||
|
return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0
|
||||||
|
})
|
||||||
|
|
||||||
line = liner.NewLiner()
|
line = liner.NewLiner()
|
||||||
defer line.Close()
|
defer line.Close()
|
||||||
|
|
||||||
@@ -96,9 +100,6 @@ func printGenericHelp() {
|
|||||||
`
|
`
|
||||||
fmt.Print(msg)
|
fmt.Print(msg)
|
||||||
|
|
||||||
sort.Slice(Commands, func(i, j int) bool {
|
|
||||||
return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0
|
|
||||||
})
|
|
||||||
for _, c := range Commands {
|
for _, c := range Commands {
|
||||||
helpTexts := strings.SplitN(c.Help(), "\n", 2)
|
helpTexts := strings.SplitN(c.Help(), "\n", 2)
|
||||||
fmt.Printf(" %-30s\t# %s \n", c.Name(), helpTexts[0])
|
fmt.Printf(" %-30s\t# %s \n", c.Name(), helpTexts[0])
|
||||||
@@ -114,10 +115,6 @@ func printHelp(cmds []string) {
|
|||||||
} else {
|
} else {
|
||||||
cmd := strings.ToLower(args[0])
|
cmd := strings.ToLower(args[0])
|
||||||
|
|
||||||
sort.Slice(Commands, func(i, j int) bool {
|
|
||||||
return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0
|
|
||||||
})
|
|
||||||
|
|
||||||
for _, c := range Commands {
|
for _, c := range Commands {
|
||||||
if c.Name() == cmd {
|
if c.Name() == cmd {
|
||||||
fmt.Printf(" %s\t# %s\n", c.Name(), c.Help())
|
fmt.Printf(" %s\t# %s\n", c.Name(), c.Help())
|
||||||
|
Reference in New Issue
Block a user