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

@@ -12,4 +12,8 @@ export class cat implements IShellCommand {
if (args.length === 0) return "cat: missing file operand";
return this.syscall.readFile(args[0]);
}
getManPage(): string {
return "cat - concatenate files and print on the standard output";
}
}