chore: fix chrome

This commit is contained in:
2026-04-15 11:40:45 +02:00
parent ea968b8492
commit dc706d6262
10 changed files with 112 additions and 32 deletions

16
src/program/Ls.ts Normal file
View File

@@ -0,0 +1,16 @@
import type { SimpleStream } from '../utils/SimpleStream'
import { Program } from './Program'
import { File } from '../fs/File'
import { Directory } from '../fs/Directory'
export class Ls extends Program {
constructor() {
super()
}
async Exec(_: SimpleStream<string>, stdout: SimpleStream<string>, workdir: Directory, __: string[]): Promise<number> {
new Directory('/etc/system/idk')
return 0
}
}