#!/usr/bin/env node 'use strict'; var program = require('commander'); program .command('create ', 'Create a new repository named "repo"') .command('list', 'List the repositories created') .command('info ', 'Get the repository metadata') .command('getacl ', 'Get the acls set for the repository') .command('setacl [acl]', 'Set (or remove) an acl for "user" on "repo"') .parse(process.argv);