zoukankan      html  css  js  c++  java
  • nodejs Commander 命令行神器简单示例

    gen.js

    #!/usr/bin/env node
    var program = require('commander');
    
     program
       .version('0.0.1')
       .option('-C, --chdir <path>', 'change the working directory')
       .option('-c, --config <path>', 'set config path. defaults to ./deploy.conf')
       .option('-T, --no-tests', 'ignore test hook')
       .option('-p, --peppers', 'Add peppers')
       .option('-P, --pineapple', 'Add pineapple')
       .option('-b, --bbq-sauce', 'Add bbq sauce')
       .option('--p, --fuck-you', 'fuckyou')
       .option('build --env <fuckyou>', 'fuckyou2')
       .parse(process.argv);
    
    if (program.peppers) console.log('  - peppers');
    if (program.pineapple) console.log('  - pineapple');
    if (program.bbqSauce) console.log('  - bbq');
    if (program.fuckYou) console.log('fuckyou');
    if (program.env && program.args.length != 0) {
        console.log(program.args);
    }
    
     program
       .command('init')
       .description('run remote setup commands')
       .action(function() {
         console.log('setup');
       });
    
     program
       .command('exec <cmd>')
       .description('run the given remote command')
       .action(function(cmd) {
         console.log('exec "%s"', cmd);
       });
    
     program
       .command('teardown <dir> [otherDirs...]')
       .description('run teardown commands')
       .action(function(dir, otherDirs) {
         console.log('dir "%s"', dir);
         if (otherDirs) {
           otherDirs.forEach(function (oDir) {
             console.log('dir "%s"', oDir);
           });
         }
       });
  • 相关阅读:
    牛客 小a与星际探索 bfs
    gear gym 思维题
    dp Surf
    P1280 尼克的任务
    Codeforces Round #539 (Div. 2) C. Sasha and a Bit of Relax
    Codeforces Round #542 C. Connect 搜索
    Layui 文件上传 附带data数据
    Layui 隐藏左侧菜单
    Layui 关闭当前标签页
    Layui Iframe页面间 方法的相互调用
  • 原文地址:https://www.cnblogs.com/CyLee/p/9189852.html
Copyright © 2011-2022 走看看