unsable code rework, doesnt run

This commit is contained in:
2026-02-23 17:15:28 +01:00
parent 1faab39849
commit 9ac27f5fbd
19 changed files with 287 additions and 189 deletions

View File

@@ -3,6 +3,7 @@ import type { CommandArgs, ICommand, Result } from "../static";
export const cmd_clear = function(this: Bash, args: CommandArgs): Result {
let result: Result = { exitCode: ExitCode.ERROR, path: this.getCwd() };
this.clearTerminal();
result.exitCode = ExitCode.SUCCESS;
return result;
}