I make a lot of command line tools for myself in Ruby (instead of bash), but now I'm interested in learning either Clojure or Haskell or both. And since I write a lot of unix command line tools and scripts, I figure that is a good way to practice using both languages. But which language is better suited for command line tool making? Maybe one strike against Clojure is the start up time.
|
|
There are lots of great Haskell libs to help with providing a polished unixy feel to command line apps. These deal mainly with command line arguments, but provide various other useful types of functionality as well:
|
|||
|
|
|
I've been working with Clojure for the past two years and haven't touched Haskell, but I would be surprised if Haskell could be as bad as Clojure for CLI utilities. The culture of tooling around the JVM (with the notable exception of JRuby) tends to make the command-line an afterthought. edit: the JVM may have an edge if you're targeting multiple architectures. |
|||||
|
|
Well, since he didn't link to it, I will. Check out Don Stewart's Practical Haskell Programming: Scripting with Types slides. It's definitely not an intro to Haskell, but demonstrates how one might implement a command line tool using Haskell. |
|||
|
|
|
There are many command line apps written in Haskell that are widely distributed in the various distros out there (e.g. pandoc, darcs, gitit, even xmonad to some extent), which I think could be taken as constructive evidence that you'll be fine. |
|||
|
|
|
I think Clojure as a JVM language is much more practical since JVM is massively deployed, so you can share your command line tools with others. |
|||||
|