From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,21def7b4562d91bf,start X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.224.205.65 with SMTP id fp1mr3496569qab.4.1355519837611; Fri, 14 Dec 2012 13:17:17 -0800 (PST) Received: by 10.49.1.43 with SMTP id 11mr1273815qej.29.1355519837549; Fri, 14 Dec 2012 13:17:17 -0800 (PST) Path: k2ni7qap.0!nntp.google.com!fc2no807713qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 14 Dec 2012 13:17:17 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=93.37.83.116; posting-account=9fwclgkAAAD6oQ5usUYhee1l39geVY99 NNTP-Posting-Host: 93.37.83.116 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <0160c8ce-1e7c-4e2c-9641-c76502adadd9@googlegroups.com> Subject: GCLP (Generic Command Line Parser) 1.0.0 released From: mockturtle Injection-Date: Fri, 14 Dec 2012 21:17:17 +0000 Content-Type: text/plain; charset=ISO-8859-1 Date: 2012-12-14T13:17:17-08:00 List-Id: Dear.all, this is small thing, but maybe someone could find this useful. I just released on Launchpad (https://launchpad.net/gclp/1.0/1.0.0) the very first release of GCLP (Generic Command Line Parser). I almost can hear you: "Not yet another command line parser!" :-) Yes, I know that there are few command line parsing libraries, but I was not able to find one that I liked, so... I scratched my own itch. A peculiarity of GCLP, that I find very convenient for commands with many parameters, is that the parameters are nominal and not positional. For example, fictional.exe input=foo.txt output=bar.xml Riccardo