I just started w/ Clojure (coming from Ruby) and I would like to build an small app with a command-line interface. How do I handle input/output to a CL?
I noticed that there is a clojure.contrib.command-line, but documentation is slim.
|
I just started w/ Clojure (coming from Ruby) and I would like to build an small app with a command-line interface. How do I handle input/output to a CL? I noticed that there is a clojure.contrib.command-line, but documentation is slim.
| |||||
feedback
|
|
Here is an example of using its
Compile the class at the REPL:
Example usage1) Executing with no command line arguments will cause the help info to be displayed. The help info can also be displayed with
2) Unspecified arguments receive the default value as specified in the cmdspec binding. For example,
3) Boolean flags are denoted by the suffix "?" in the cmdspec. Note that the flag itself does not include the "?" as part of its name.
4) Also note that you may specify flag aliases by specifying multiple symbols in the cmdspec. I have done this with the 5) Finally, I've specified that
| |||||||||
feedback
|
|
I'd like to add that you can do
below the | ||||
|
feedback
|
|
The old clojure.contrib.command-line has been replaced with tools.cli. https://github.com/clojure/tools.cli tools.cli used to be called clargon. Below are two blog posts that give examples of using tools.cli (simple replace any reference to clargon with tools.cli. Posts are out of date). This shows a few methods ways, including old clojure.contrib.command-line | |||
|
feedback
|
|
Maybe try jark. Jark is a tool to run clojure programs on a persistent JVM. It has some useful command-line utilities. http://icylisper.in/clojure/jark.html
| |||
|
feedback
|