Quote:
> I would have expected glob("*.c") to work but
> not glob("\*\.c")
They *must* behave identically, as they have the identical argument.
glob() never sees the backslashes, double quotes eats them first.
Maybe you meant to say "not glob('\*\.c')" instead?
Quote:
> Why are you
> escaping the *?
The * is not being escaped (successfully).
--
Tad McClellan SGML consulting
Fort Worth, Texas