Drew

Results 7 comments of Drew

`as-admin` could be generalized to `as-user` passing in the user to run it as. admin could then run it as admin basically sudo.

Oh, Thanks. The example at the top of the README said you should call `celeri.open()`.

Would this work ``` javascript celeri.parse(process.argv, function(e, cmd) { if(e) throw e; if(!cmd.command.length) celeri.open(); }); ```

It doesn't work. What should I run to get it to run a command that was passed in but if one is not passed in open the "shell".

Thanks, Sounds good. But I'm having a different problem now. I start it `node bin/jules.js interact` but It just hangs saying: ``` tty.setRawMode is deprecated. Use `process.stdin.setRawMode()` instead. ``` When...

@aneilbaboo: I looked back through it and I'm pretty sure it works like this: ```ometajs grammar A { a = "a" } grammar B { b = "b", ab =...