diff options
author | Marvin Borner | 2019-09-19 19:01:53 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-19 19:01:53 +0200 |
commit | ffd82e18b5259fab477ad375a7af8550fac526d8 (patch) | |
tree | bb340c9a3278996d24d786db4673862078e46f8c /src/commands/command.c | |
parent | 2a3620453de91e08b668ef21049058239c82d0a4 (diff) |
Added reboot feature
Diffstat (limited to 'src/commands/command.c')
-rw-r--r-- | src/commands/command.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/command.c b/src/commands/command.c index eeac08e..9cbcb07 100644 --- a/src/commands/command.c +++ b/src/commands/command.c @@ -19,6 +19,8 @@ void exec_command(char *command) { terminal_write_line("pong!"); else if (starts_with(command, "shutdown")) shutdown(); + else if (starts_with(command, "reboot")) + reboot(); else terminal_write_line("Command not found!"); } |