From 5b355a34b92d48bc07a8efe2b0d30fc714638374 Mon Sep 17 00:00:00 2001 From: Ry Date: Tue, 31 Jan 2023 22:38:14 -0800 Subject: [PATCH] sh: `help` should list commands in alphabetical order --- applications/sh/commands/commands.asm | 2 +- applications/sh/commands/help.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/sh/commands/commands.asm b/applications/sh/commands/commands.asm index 4c8434d..39c523a 100644 --- a/applications/sh/commands/commands.asm +++ b/applications/sh/commands/commands.asm @@ -61,5 +61,5 @@ shell_invalid_command_string: data.str "invalid command or FXF binary" data.8 10 #include "commands/diskrm.asm" #include "commands/exit.asm" #include "commands/help.asm" - #include "commands/type.asm" #include "commands/shutdown.asm" + #include "commands/type.asm" diff --git a/applications/sh/commands/help.asm b/applications/sh/commands/help.asm index 5c118c3..666aa85 100644 --- a/applications/sh/commands/help.asm +++ b/applications/sh/commands/help.asm @@ -22,8 +22,8 @@ shell_help_text: data.str "diskrm | remove disk $0" data.8 10 data.str "exit | exit the shell" data.8 10 data.str "help | show this help text" data.8 10 - data.str "type | print file $0 of type $1" data.8 10 data.str "shutdown| turn the computer off" data.8 10 + data.str "type | print file $0 of type $1" data.8 10 data.8 10 data.str "type the name of an FXF binary to launch" data.8 10 data.str "it as a new task; the shell will suspend" data.8 10