clean up "shell" help output

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1881 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Mike Frysinger 14 years ago
parent 6833ebdfef
commit 9c75b9f03b

@ -16,6 +16,8 @@
* src/cmd/cmd_get.c: Fix typo in help output.
* src/cmd/cmd_set.c: Fix typo in help output.
* src/cmd/cmd_shell.c: Clean up help output.
2011-02-17 Mike Frysinger <vapier@gentoo.org>
* data/analog/bf548/STEPPINGS: Add bf54x-0.4 support.

@ -92,15 +92,15 @@ static void
cmd_shell_help (void)
{
urj_log (URJ_LOG_LEVEL_NORMAL,
_("Usage: %s cmmd\n"
"Shell out to os for a command.\n"
"\n" "CMMD OS Shell Command\n"),
"shell cmmd");
_("Usage: %s CMD\n"
"Shell out to the OS for a command.\n"
"\n" "CMD OS Shell Command\n"),
"shell");
}
const urj_cmd_t urj_cmd_shell = {
"shell",
N_("shell cmmd"),
N_("run a shell command"),
cmd_shell_help,
cmd_shell_run
};

Loading…
Cancel
Save