:orphan: .. title:: SHELL_HELP_OPT_PARSE .. option:: CONFIG_SHELL_HELP_OPT_PARSE *Parse -h and --help options* Type: ``bool`` Help ==== .. code-block:: none Shell parses command to find '-h' or '--help' string. If the shell finds the string, it will automatically print a help message for a command. Direct dependencies =================== \ :option:`SHELL_HELP ` && !\ :option:`SHELL_GETOPT ` && \ :option:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/shell/Kconfig:140`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:45`` Menu path: (Top) → Sub Systems and OS Services → Shell → Enable help message .. code-block:: kconfig config SHELL_HELP_OPT_PARSE bool "Parse -h and --help options" default y depends on SHELL_HELP && !SHELL_GETOPT && SHELL help Shell parses command to find '-h' or '--help' string. If the shell finds the string, it will automatically print a help message for a command. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*