Caleb Epstein <[EMAIL PROTECTED]> wrote: > On Tue, May 21, 2002 at 04:39:05PM +0200, Nicolas Noble wrote: >> lftp :~> help mirror >> Usage: mirror [OPTS] [remote [local]] > > Thats not what I want. I want a mirror which wil take > multiple "remote" arguments, which might be wildcards: > > mmirror -cv abc* def* ghi*
Do you really care about the syntax, or just the functionality? You can construct a single regular expression to match all those glob patterns: ^\(abc\|def\|ghi\).* Or something like that. paul
