pctl Add kill command

This commit is contained in:
2025-09-29 21:43:28 +02:00
parent 46e52c8d48
commit 0fb63b4695
3 changed files with 37 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include <stdint.h>
#include <ulib.h>
#include "ls.h"
#include "kill.h"
void main(void) {
if (argslen() == 0) {
@ -12,6 +13,8 @@ void main(void) {
if (string_strcmp(cmd, "ls") == 0) {
pctl_ls();
} else if (string_strcmp(cmd, "kill") == 0) {
pctl_kill();
} else {
uprintf("pctl: unknown command %s\n", cmd);
}