Files
bare-operating-system/packages/bare-os-seeder/kernel/bin/whoami
T
2026-04-03 02:49:18 -04:00

9 lines
286 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(ctx.vfs.env.USER || ctx.vfs.env.LOGNAME || 'guest')
}