ProzillaOS/packages/apps/terminal/core/commands/whoami.ts
2024-06-16 21:46:44 +02:00

10 lines
No EOL
246 B
TypeScript

import { Command, ExecuteParams } from "../command";
export const whoami = new Command()
.setManual({
purpose: "Display the username"
})
.setExecute((args, params) => {
const { username } = params as ExecuteParams;
return username;
});