Skip to main content
Module

x/cliffy/examples/command/default_option_value.ts

Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Extremely Popular
Go to Latest
File
#!/usr/bin/env -S deno run
import { Command } from "../../command/command.ts";
const { options } = await new Command() .option("-c, --cheese [type:string]", "add the specified type of cheese", { default: "blue", }) .parse(Deno.args);
console.log(`cheese: ${options.cheese}`);