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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,e219d94b946dfc26 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news3.google.com!news2.volia.net!solnet.ch!solnet.ch!news-zh.switch.ch!switch.ch!news.ip-plus.net!newsfeed.ip-plus.net!news.post.ch!not-for-mail From: Martin Krischik Newsgroups: comp.lang.ada Subject: Re: Ada.Command_Line and wildcards Date: Tue, 27 Feb 2007 08:11:34 +0100 Organization: Swisscom IP+ (post doesn't reflect views of Swisscom) Message-ID: <45e3d9a6$1@news.post.ch> References: <45dcaed8_6@news.bluewin.ch> <1172132169.423514.271890@s48g2000cws.googlegroups.com> <87hctei5pf.fsf@ludovic-brenta.org> <1281455.i5JogXiQq3@linux1.krischik.com> NNTP-Posting-Host: 194.41.146.1 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: atlas.ip-plus.net 1172560299 29213 194.41.146.1 (27 Feb 2007 07:11:39 GMT) X-Complaints-To: abuse@ip-plus.net NNTP-Posting-Date: Tue, 27 Feb 2007 07:11:39 +0000 (UTC) User-Agent: Thunderbird 1.5.0.8 (Windows/20061025) In-Reply-To: X-Original-NNTP-Posting-Host: w01iwt.pnet.ch X-Original-Trace: 27 Feb 2007 08:11:34 +0200, w01iwt.pnet.ch Xref: g2news2.google.com comp.lang.ada:9568 Date: 2007-02-27T08:11:34+01:00 List-Id: Simon Wright schrieb: > Martin Krischik writes: > >> Actually the VMS *could* have done that as foreign commands or >> symbols are defined using a meta language called CLD (Command >> Language Definition) [1]. > > Actually you used CLD _or_ foreign commands. I forget why I used > foreign commands almost exclusively -- I guess the CLD compiler wasn't > available or wasn't obviously documented when I started programming on > VMS (1982, I think). Maybe because: $ foo :== $sys$sysexe:foo.exe is easier to begin with then: $ DEFINE VERB FOO $ IMAGE "SYS$SYSEXE:FOO.EXE" $ QUALIFIER BAR However the 2nd option will tell the command line processor that an option /BAR exists. Sadly VMS never really used CLD to it's full potential. Just imagine CLD combined with bash'es advanced comandline completion! Not only commands and files could be completed - options as well. Working with VMS always makes me sad - for all the missed opportunities the great VMS foundation could have made possible. Martin