add man pages for shell commands and implement mkdir, ping, matrix, and about commands

This commit is contained in:
2025-01-24 17:41:34 -03:00
parent f39333cae6
commit 427f864ad6
19 changed files with 236 additions and 4 deletions

View File

@@ -21,4 +21,8 @@ export class rm implements IShellCommand {
this.syscall.deleteFile(filename);
return `Removed ${filename}`;
}
getManPage(): string {
return "rm - remove files or directories";
}
}