aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 18:14:42 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2017-07-18 18:14:42 +0200
commitd2c15bc7633d91400a46700af78bb36b2aa0a402 (patch)
tree4739f4d4cbd60868829bb4e2b538ffb4ffbd1f15
parent513a2457b65894b10b9fd6aa8753fca59eced08c (diff)
downloadbusybox-w32-d2c15bc7633d91400a46700af78bb36b2aa0a402.tar.gz
busybox-w32-d2c15bc7633d91400a46700af78bb36b2aa0a402.tar.bz2
busybox-w32-d2c15bc7633d91400a46700af78bb36b2aa0a402.zip
hush: tweak "help" output
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/hush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index f6da826d3..5de682f8b 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1068,7 +1068,7 @@ static const struct built_in_command bltins1[] = {
1068 BLTIN("export" , builtin_export , "Set environment variables"), 1068 BLTIN("export" , builtin_export , "Set environment variables"),
1069#endif 1069#endif
1070#if ENABLE_HUSH_JOB 1070#if ENABLE_HUSH_JOB
1071 BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"), 1071 BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"),
1072#endif 1072#endif
1073#if ENABLE_HUSH_HELP 1073#if ENABLE_HUSH_HELP
1074 BLTIN("help" , builtin_help , NULL), 1074 BLTIN("help" , builtin_help , NULL),
@@ -1121,7 +1121,7 @@ static const struct built_in_command bltins1[] = {
1121 BLTIN("unset" , builtin_unset , "Unset variables"), 1121 BLTIN("unset" , builtin_unset , "Unset variables"),
1122#endif 1122#endif
1123#if ENABLE_HUSH_WAIT 1123#if ENABLE_HUSH_WAIT
1124 BLTIN("wait" , builtin_wait , "Wait for process"), 1124 BLTIN("wait" , builtin_wait , "Wait for process to finish"),
1125#endif 1125#endif
1126}; 1126};
1127/* These builtins won't be used if we are on NOMMU and need to re-exec 1127/* These builtins won't be used if we are on NOMMU and need to re-exec