Kernel: Shell now has exit() command

This commit is contained in:
Bananymous 2023-04-19 12:51:44 +03:00
parent 6f65453fd4
commit 51e299c7e3
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;