Start of binary search for ls command

This commit is contained in:
2026-02-12 06:21:30 +01:00
parent f678c0fa54
commit 05c3dcd5b5
6 changed files with 106 additions and 15 deletions

View File

@@ -105,6 +105,10 @@ export class Bash {
return this._terminal.getTerminalWidth();
}
getTerminalFontSize(): number {
return this._terminal.getFontSize();
}
hasSudoPerms(uid: number): boolean {
return this._group[1].members.includes(uid);
}