ProzillaOS/src/features/applications/terminal/commands/nice.js
2023-12-11 16:51:40 +01:00

7 lines
No EOL
213 B
JavaScript

import Command from "../command.js";
export const nice = new Command("nice")
.setExecute(function(args) {
if (args[0] === "man" && args[1] === "woman")
return `${this.name}: No manual entry for woman`;
});