多任务

This commit is contained in:
2026-02-28 16:30:25 +08:00
parent 02ff8295ef
commit 58df162054
12 changed files with 560 additions and 20 deletions

View File

@@ -163,6 +163,12 @@ namespace CMLeonOS.shell
case "uptime":
shell.ShowUptime();
break;
case "ps":
shell.ShowProcesses();
break;
case "kill":
shell.KillProcess(args);
break;
case "grep":
shell.GrepFile(args);
break;