Files
bare-operating-system/packages/bare-os-seeder/kernel/bin/help
T
Raven Scott eca209b663
CI / test (push) Failing after 4m58s
Update
2026-04-03 01:37:34 -04:00

11 lines
458 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 — builtins: cd, export, exit | /bin: basename cat clear date dirname echo env exit false head help hostname id ls nl pathchk printenv pwd rm seq sleep sort tail test touch true tty uname wc which whoami'
)
}