Kernel: Shell now has exit() command

This commit is contained in:
Bananymous 2023-04-19 12:51:44 +03:00
parent fd81e31050
commit a1047918d2
1 changed files with 4 additions and 0 deletions

View File

@ -369,6 +369,10 @@ argument_done:
}
TTY_PRINT("\e[2J\e[H");
}
else if (arguments.front() == "exit")
{
Process::current().exit();
}
else if (arguments.front() == "time")
{
auto new_args = arguments;