Re: Exec Perl Prog with Arguments

2005-03-21 Thread Sven Waibel
Thanks, it works fine. You have a typo at ending --> :o) Sven Stefan Bodewig wrote: > On Mon, 21 Mar 2005, Sven Waibel <[EMAIL PROTECTED]> wrote: > >> > > > I don't think you mean path here, but rather line. > > path="foo bar" will pass "foo bar" as a single command line a

Re: Exec Perl Prog with Arguments

2005-03-21 Thread Stefan Bodewig
On Mon, 21 Mar 2005, Sven Waibel <[EMAIL PROTECTED]> wrote: > I don't think you mean path here, but rather line. path="foo bar" will pass "foo bar" as a single command line argument to Perl. I'm not exactly sure what file is supposed to look like here > perl script syntax: transl

Re: AW: Exec Perl Prog with Arguments

2005-03-21 Thread Sven Waibel
The script does a lot more than renaming files. It still translates files. And that's not the problem,unfortunately. Sven [EMAIL PROTECTED] wrote: >>My perl script renames files into files_en, so i want to >>execute my perl script and that should rename all the files >>ending with xsl. > > >

AW: Exec Perl Prog with Arguments

2005-03-21 Thread Jan . Materne
> My perl script renames files into files_en, so i want to > execute my perl script and that should rename all the files > ending with xsl. Why using perl? Why not a with a nested mapper? Jan

Exec Perl Prog with Arguments

2005-03-21 Thread Sven Waibel
Hi everybody, a part of my build.xml my build.properties: perl = d:/perl/bin/perl.exe perl.translate.script.name d:/db_transl/translate2.pl My perl script renames files into files_en, so i wa