views:

215

answers:

4

I need a command line parsing utility. In the brief 10 second that I've spent googling, I found NConsoler. Can anybody recommend anything else?

+4  A: 

If you're interested in .NET (your question doesn't give any information) I've had the Plossum.CommandLine library recommended to me before now. I haven't used it myself, but you might want to take a look.

Jon Skeet
+3  A: 

You can take a look at

http://commandline.codeplex.com/

and

GetPot command line parser

rahul
+2  A: 

If you are talking about .NET then see the answers to this question.

Mike Two
A: 

Google's commandline-parsing library for C++ and python: http://code.google.com/p/google-gflags/

jcd