mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
There's no reason for "read" and "echo" commands to not
appear in the online command list.
This commit is contained in:
parent
6af2c48a95
commit
fccc3fcfc2
1 changed files with 2 additions and 2 deletions
|
|
@ -312,7 +312,7 @@ command_unset(int argc, char *argv[])
|
|||
return(CMD_OK);
|
||||
}
|
||||
|
||||
COMMAND_SET(echo, "echo", NULL, command_echo);
|
||||
COMMAND_SET(echo, "echo", "echo arguments", command_echo);
|
||||
|
||||
static int
|
||||
command_echo(int argc, char *argv[])
|
||||
|
|
@ -351,7 +351,7 @@ command_echo(int argc, char *argv[])
|
|||
* A passable emulation of the sh(1) command of the same name.
|
||||
*/
|
||||
|
||||
COMMAND_SET(read, "read", NULL, command_read);
|
||||
COMMAND_SET(read, "read", "read input from the terminal", command_read);
|
||||
|
||||
static int
|
||||
command_read(int argc, char *argv[])
|
||||
|
|
|
|||
Loading…
Reference in a new issue