ProzillaOS/src/features/applications/terminal/commands/hostname.js
2023-12-19 11:42:51 +01:00

9 lines
No EOL
200 B
JavaScript

import Command from "../command.js";
export const hostname = new Command("hostname")
.setManual({
purpose: "Display the hostname"
})
.setExecute((args, { hostname }) => {
return hostname;
});