Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
My immediate gut reaction would be that Haskell is probably the better option for this use-case. Making this a comment though, since I don't have first-hand experience. – Bob Aman Feb 14 '11 at 20:43
14  
Clojure, being JVM-based, will have some non-negligible overhead in startup time – pelotom Feb 14 '11 at 20:47
1  
They will both be fine. – luqui Feb 14 '11 at 21:09
If you use Clojure, you wouldn't start up a new JVM each time you wanted to write a script - you'd just have a running REPL open and type your one-liners in there. – mikera Feb 14 '11 at 21:50
5  
I would say Haskell if you want a fast command line tool without any extra effort; compiled beats JVM. And Haskell is also very useful for that sort of thing anyway: github.com/robertmassaioli/htee – Robert Massaioli Feb 14 '11 at 23:10

5 Answers

up vote 24 down vote accepted

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:

share|improve this answer

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.

share|improve this answer
12  
In case any reader doesn't know this off the top of their head: technomancy is the author of leiningen, a command-line build tool for clojure. His opinion should count for a lot! – A. Levy Feb 15 '11 at 20:39

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.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer
6  
Ability to compile Haskell applications to native code using GHCi removes the restrictions you mention. – Yasir Arsanukaev Feb 15 '11 at 1:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.