2022-05-31 23:27:27 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Kaspar Schleiser <kaspar@schleiser.de>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup sys_shell_commands Shell commands
|
|
|
|
* @ingroup sys_shell
|
|
|
|
|
|
|
|
Shell Commands
|
|
|
|
==============
|
|
|
|
|
|
|
|
Certain modules such as `ps`, `saul_reg`, or `gnrc_icmpv6_echo` can expose
|
|
|
|
(some of) their functionality not only as C-API, but also as shell command.
|
2024-03-19 15:12:02 +01:00
|
|
|
Using the module `shell_cmds_default` will enable the shell integration of the used
|
2022-05-31 23:27:27 +02:00
|
|
|
modules, if it exists.
|
|
|
|
|
|
|
|
A few rarely needed shell commands that needs to be used in addition to the
|
2024-03-19 15:12:02 +01:00
|
|
|
`shell_cmds_default` and the module providing the C-API. Examples include
|
2024-03-14 22:06:35 +01:00
|
|
|
`shell_cmd_nice`, `shell_cmd_gnrc_udp`, or `shell_random_cmd`.
|
2024-03-14 22:04:42 +01:00
|
|
|
Consult the documentation of the modules to find out whether they have a
|
|
|
|
shell integration and how to enable it.
|
2022-05-31 23:27:27 +02:00
|
|
|
*/
|