Re: make command throws error Perl script no found C:/Program No such file or directory

2009-01-08 Thread viji19812001
On Jan 6, 5:32 pm, rc...@pcug.org.au (Owen) wrote: Hi, I have perl5.10.0 installed under C:/ and using bash prompt to run a makecommand. How are you doing that? When I issue themakecommandit throws error Perl Script not found C:/Program no such file or directory Where

Re: make command throws error Perl script no found C:/Program No such file or directory

2009-01-08 Thread Owen
On Jan 6, 5:32 pm, rc...@pcug.org.au (Owen) wrote: Hi, I have perl5.10.0 installed under C:/ and using bash prompt to run a makecommand. How are you doing that? When I issue themakecommandit throws error Perl Script not found C:/Program no such file or directory Where

Re: make command throws error Perl script no found C:/Program No such file or directory

2009-01-07 Thread viji19812001
for an installation that Iam doing When I issue themakecommandit throws error Perl Script not found C:/Program no such file or directory Where is the script that you are trying to run? Iam installing an opentv kit...hence its make command that iam running under c:/optv.where the kit

Re: make command throws error Perl script no found C:/Program No such file or directory

2009-01-07 Thread Rob Dixon
viji19812...@gmail.com wrote: I have perl5.10.0 installed under C:/ and using bash prompt to run a make command. When I issue the make command it throws error Perl Script not found C:/Program no such file or directory Perl is not installed in Program files it under c: Also I do

make command throws error Perl script no found C:/Program No such file or directory

2009-01-06 Thread viji19812001
Hi, I have perl5.10.0 installed under C:/ and using bash prompt to run a make command. When I issue the make command it throws error Perl Script not found C:/Program no such file or directory Perl is not installed in Program files it under c: Also I do understand it could be a spacing problem

Re: make command throws error Perl script no found C:/Program No such file or directory

2009-01-06 Thread Owen
Hi, I have perl5.10.0 installed under C:/ and using bash prompt to run a make command. How are you doing that? When I issue the make command it throws error Perl Script not found C:/Program no such file or directory Where is the script that you are trying to run? Perl

Re: Error in Script

2004-04-05 Thread David Kirol
You'll need to fix this also ($str1,$str2) = split(/./, $filetoopen); It should be: ($str1,$str2) = split(/\./, $filetoopen); So that split can funcrion as you expect. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Error in Script

2004-04-04 Thread prabu
Hi, I have wrote a script to search for a pattern and replace it in all files of a directory,that i specified at commandline. I want another one thing is to be done in the script.That's,it should search only for the type of files I specified at commandline. That is,it should

Re: Error in Script

2004-04-04 Thread Martin Lercher
That's 'cause you have put the question inside the foreach loop: # get all files foreach $file (@allfiles){ $filetoopen = $path ./ .$file; # filter to check the type of file print Enter the type of extension:; my $ext=STDIN; Btw, it would be easier to just use the fileglob operator from the start

Re: Error in Script

2004-04-04 Thread John W. Krahn
Prabu wrote: Hi, Hello, I have wrote a script to search for a pattern and replace it in all files of a directory,that i specified at commandline. I want another one thing is to be done in the script.That's,it should search only for the type of files I specified at commandline. That