Files
bare-operating-system/packages/bare-os-seeder/kernel/bin/help
T
Raven Scott 2e26b14250
CI / test (push) Failing after 4m56s
updates
2026-04-02 22:35:09 -04:00

11 lines
371 B
Plaintext

/** Shared helpers for drive-resident /bin scripts (prepended before each command). */
function bareStdin(ctx) {
return typeof ctx.shellStdin === 'string' ? ctx.shellStdin : ''
}
async function run(ctx, argv) {
ctx.console.log(
'Bare OS userland — builtins: cd, export, exit | /bin: ls pwd cat echo test basename dirname wc head tail uname pathchk help'
)
}