On Mon, Oct 24, 2005 at 08:27:46AM -0400, Justin Piszcz wrote:
> >From the manpage:
>
> -i RX, --include RX include matching files
> -x RX, --exclude RX exclude matching files
> -I GP, --include-glob GP include matching files
> -X GP, --exclude-glob GP exclude matching files
>
> man lftp
>
> mirror [OPTS]
>
> mirror -i "*VST*" ?
Little correction:
mirror -i "VST"
`*' in regular expressions means repeation of previous character 0 or more
times.
So, for example, "V.*T" means "V<any number of any chcracters>T".
--
Alexander..