From | John R. McPherson |
Date | Fri, 08 Feb 2002 14:30:10 +1300 |
Subject | Re: UnknownPlug Errors.. |
In-Reply-To | (C08FFFF817C9D2118C7C00A0C9ED115501569A2F-EXCHANGE) |
Jared Potter wrote:
> plugin UnknownPlug -process_exp "*.eps" -assoc_field "epsses" and > mdcmc@scrollkeeper:/usr/local/gsdl/collect/agency/import$ import.pl agency
Hi,
In perl regexps, a "." matches any character, and a "*" means 0 or
So, what you want is:
PS you can also say ".*\.eps$" to say only match at the end of the
|