Stephane CHAZELAS wrote:
> In ksh93, ** matches any file in any directory and subdirectory,
> while you need **/* in bash or zsh (**/* will also work in ksh).
No, you don't. When `globstar' is enabled, ** will match every file
in every directory and subdirectory in bash-4.0.
Chet
--
``The lyf
2009-01-21, 22:49(-05), Chet Ramey:
> Stephane CHAZELAS wrote:
>
>> Apparently, just like ksh93, bash4 only implements ** and not ***
>> nor the globbing qualifiers, but like zsh it requires **/*.c
>> (**.c won't work).
>
> I'm not sure what version of ksh93 you're using, but the latest version
> I
Thanks Chet, and everyone who has contributed.