Hey Nick, tools.cli is great for interpretation of command line arguments
to a program; to actually provide a user with your own
limited-functionality shell, take a look at wrapping JLine:

https://github.com/jline/jline2

along the lines of what Reply did:

https://github.com/trptcolin/reply/tree/master/src/clj/reply/reader

Good luck,

Jonah


On Tue, Feb 16, 2016 at 9:42 AM, Alan Thompson <clooj...@gmail.com> wrote:

> Have you seen this:
>
> https://github.com/clojure/tools.cli
>
> https://github.com/clojure-cookbook/clojure-cookbook/blob/master/03_general-computing/3-07_parse-command-line-arguments.asciidoc
>
> Alan
>
> On Tue, Feb 16, 2016 at 5:06 AM, Nick Vargish <nickvarg...@gmail.com>
> wrote:
>
>> My current project requires a command-line interpreter with limited
>> functionality... For various non-technical reasons we can't expose bash to
>> our users.
>>
>> Our plans call for writing a console shell that will accept some limited
>> command set, and Clojure would be the natural implementation language,
>> since much of our functionality has been implemented in a Clojure library.
>> We even have a command-line tool that exposes a lot of the functionality to
>> shell scripts, but the parsing/function routing is quite primitive...
>>
>> Any suggestions? Has anyone done work on a CLI implemented in Clojure?
>>
>> Thanks,
>>
>> Nick
>>
>>
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Clojure" group.
>> To post to this group, send email to clojure@googlegroups.com
>> Note that posts from new members are moderated - please be patient with
>> your first post.
>> To unsubscribe from this group, send email to
>> clojure+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Clojure" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to clojure+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clojure@googlegroups.com
> Note that posts from new members are moderated - please be patient with
> your first post.
> To unsubscribe from this group, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to