Bart Lateur wrote in fwp:
> Isn't glob() supposed to return only files that actually exist?

No, it's supposed to mimic csh :

$ csh
$ echo foo 
foo
$ echo foo*
echo: No match.
$ echo foo{a,b}
fooa foob

(note that it's different from bash globbing in the foo* case).

-- 
Rafael Garcia-Suarez

Reply via email to