From | John R. McPherson |
Date | Fri, 25 Apr 2003 22:56:26 +1200 |
Subject | Re: [greenstone-users] |
In-Reply-To | (20030425054858-2746-qmail-webmail31-rediffmail-com) |
On Fri, Apr 25, 2003 at 05:48:58AM -0000, deepak kumar wrote:
> Hello list, > I was trying to make a collection of video file. Initiallly i > starated with one file "Alley.MOV" > > i entered the following line in collect.cfg > > > plugin UnknownPlug -process_exp "*.MOV" -assoc_field > "movie" > > during import process following error i found. > > C:Program Filesgsdl>perl -S import.pl movie > Quantifier follows nothing before HERE mark in regex m/* << HERE > .MOV/ at C:Pro > gram FilesgsdlperllibpluginsUnknownPlug.pm line 149.
plugin UnknownPlug -process_exp "\.MOV$" -assoc_field "movie" (The \ escapes the dot to mean a real dot, and the $ means
Hope this helps
|