hush: tweak "help" output

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2017-07-18 18:14:42 +02:00
parent 513a2457b6
commit d2c15bc763

View File

@ -1068,7 +1068,7 @@ static const struct built_in_command bltins1[] = {
BLTIN("export" , builtin_export , "Set environment variables"), BLTIN("export" , builtin_export , "Set environment variables"),
#endif #endif
#if ENABLE_HUSH_JOB #if ENABLE_HUSH_JOB
BLTIN("fg" , builtin_fg_bg , "Bring job into foreground"), BLTIN("fg" , builtin_fg_bg , "Bring job to foreground"),
#endif #endif
#if ENABLE_HUSH_HELP #if ENABLE_HUSH_HELP
BLTIN("help" , builtin_help , NULL), BLTIN("help" , builtin_help , NULL),
@ -1121,7 +1121,7 @@ static const struct built_in_command bltins1[] = {
BLTIN("unset" , builtin_unset , "Unset variables"), BLTIN("unset" , builtin_unset , "Unset variables"),
#endif #endif
#if ENABLE_HUSH_WAIT #if ENABLE_HUSH_WAIT
BLTIN("wait" , builtin_wait , "Wait for process"), BLTIN("wait" , builtin_wait , "Wait for process to finish"),
#endif #endif
}; };
/* These builtins won't be used if we are on NOMMU and need to re-exec /* These builtins won't be used if we are on NOMMU and need to re-exec