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 From: Brian May Newsgroups: comp.lang.ada Subject: Re: Ada.Command_Line and wildcards References: <45dcaed8_6@news.bluewin.ch> <1172132169.423514.271890@s48g2000cws.googlegroups.com> <545bgvF1ttrphU1@mid.individual.net> <1495406.QZvfpqijrQ@linux1.krischik.com> <6dy7mn3hhu.fsf@hod.lan.m-e-leypold.de> <1172328891.5496.62.camel@localhost.localdomain> Date: Mon, 05 Mar 2007 12:07:18 +1100 Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) XEmacs/21.4.19 (linux) Cancel-Lock: sha1:KbIaXklu/93G6ZNphg4l46iVwy0= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii NNTP-Posting-Host: snoopy.microcomaustralia.com.au X-Trace: quokka.wn.com.au 1173056817 202.173.153.89 (5 Mar 2007 10:06:57 +0800) X-Complaints-To: abuse@westnet.com.au Path: g2news2.google.com!news3.google.com!news4.google.com!news.glorb.com!quokka.wn.com.au!not-for-mail Xref: g2news2.google.com comp.lang.ada:9671 Date: 2007-03-05T12:07:18+11:00 List-Id: >>>>> "Georg" == Georg Bauhaus writes: Georg> $ echo *.ads Get a real shell ! I get: zsh: no matches found: *.ads which forces you to quote the value if thats what you really wanted: > echo "*.ads" *.ads or set NULLGLOB: > setopt NULLGLOB > echo *.ads which expands *.ads into nothing. -- Brian May