Re: lib/auto/IO/Compress/Compress.a: No such file or directory

2020-01-28 Thread Jeffrey Walton
ode/Normalize/Normalize.a > > lib/auto/Encode/Byte/Byte.a lib/auto/Encode/CN/CN.a > > lib/auto/Encode/EBCDIC/EBCDIC.a lib/auto/Encode/JP/JP.a > > lib/auto/Encode/KR/KR.a lib/auto/Encode/Symbol/Symbol.a > > lib/auto/Encode/TW/TW.a lib/auto/Encode/Unicode/Unicode.a libperl.a &g

Re: lib/auto/IO/Compress/Compress.a: No such file or directory

2020-01-28 Thread Jeffrey Walton
> lib/auto/Encode/TW/TW.a lib/auto/Encode/Unicode/Unicode.a libperl.a > `cat ext.libs` /home/jwalton/bootstrap/lib/libdb.a -lm > /usr/lib/libcrypt.a > cc: lib/auto/IO/Compress/Compress.a: No such file or directory > > Here is the full build: https://pastebin.com/Pu0cYi25 How does

lib/auto/IO/Compress/Compress.a: No such file or directory

2020-01-28 Thread Jeffrey Walton
a lib/auto/Encode/JP/JP.a lib/auto/Encode/KR/KR.a lib/auto/Encode/Symbol/Symbol.a lib/auto/Encode/TW/TW.a lib/auto/Encode/Unicode/Unicode.a libperl.a `cat ext.libs` /home/jwalton/bootstrap/lib/libdb.a -lm /usr/lib/libcrypt.a cc: lib/auto/IO/Compress/Compress.a: No such file or directory Here is the

Re: it told me that Can't open perl script " hello.p1" No such file or directory

2011-05-23 Thread Thomas Lingmann
o,word!\n”; > > and save it under e:\ as perl.p1 > > but when I run it with the window commend line as > > > E:\ perl hello.p1 it told me that Can't open perl script " > hello.p1" No such file or directory!! > > how can I solve it thank you!!!

Re: it told me that Can't open perl script " hello.p1" No such file or directory

2011-05-23 Thread Kenneth Wolcott
he window commend line as > > > E:\ perl hello.p1         it told me that Can't open perl script " > hello.p1"  No such file or directory!! > > how can I solve it  thank you!!! > "p1" is different than "pl". "pl" is the usual suf

Re: it told me that Can't open perl script " hello.p1" No such file or directory

2011-05-23 Thread Alexey Mishustin
ndow commend line as > > >E:\ perl hello.p1 it told me that Can't open perl script " >hello.p1" No such file or directory!! > >how can I solve it thank you!!! Maybe hello.pl, not hello.p1? 'pl' (abbreviated from 'Perl') is the co

it told me that Can't open perl script " hello.p1" No such file or directory

2011-05-23 Thread Gang Cheng
cript " hello.p1" No such file or directory!! how can I solve it thank you!!!

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

2009-01-08 Thread Owen
themakecommandit throws error >> >> > "Perl Script not found" C:/Program no such file or directory >> >> Where is the script that you are trying to run? >> >> >> >> > Perl is not installed in Program files it under c: >> >>

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 > > > "Per

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

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

2009-01-07 Thread viji19812001
mpt.there i issue a make command which is needed 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? > Ia

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 y

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

Re: No such file or directory

2008-05-30 Thread Mimi Cafe
in one folder. I pass 3 arguments to the script (script.pl >> file1 file2 file3)and I can open the first file stored in $ARGV[0] as seen >> below: >> >> my $ad_clients = shift @ARGV; >> >> open (ADFILE, "<", $ad_clients) or die "Could not open

Re: No such file or directory

2008-05-29 Thread Mimi Cafe
t; my script is in the same directory as my files, but it cannot find the file >> ABC.txt in open() below. >> >> foreach my $supplied (@ARGV){ >> # Output file name set of element currently processed. >> >> # Open file to read from. >> open (INPUTFILE, &

Re: No such file or directory

2008-05-29 Thread Mimi Cafe
lients for reading: $! \n"; # This works fine! my @ad_clients = ; close ADFILE; my %inputclient; foreach my $supplied (@ARGV){ open (INPUTFILE, "<", $supplied) or die "Could not open $supplied for reading: $!\n # This does not works! Error: No such file or directory Mimi On

Re: No such file or directory

2008-05-29 Thread Ken Foskey
to read from. > open (INPUTFILE, "<", "$supplied") or die "Could not open $supplied: $!\n"; > # Error: No such file or directory. > } > > Any help > > Mimi for starters you might want to look at the <> operator: while( <> ) { } Will

Re: No such file or directory

2008-05-29 Thread Jeff Peng
; # Open file to read from. > open (INPUTFILE, "<", "$supplied") or die "Could not open $supplied: $!\n"; > # Error: No such file or directory. > } How do you pass the files to the script? Using opendir to do it is better I may suggest. -- Je

No such file or directory

2008-05-29 Thread Mimi Cafe
uld not open $supplied: $!\n"; # Error: No such file or directory. } Any help Mimi

Re: No such file or directory

2008-05-21 Thread anthony brooke
- Original Message From: Jeff Peng <[EMAIL PROTECTED]> To: Perl Beginners Sent: Wednesday, May 21, 2008 15:53:00 Subject: Re: No such file or directory > open(RULES, 'rule.pl') please use full path if you don't know where you are exactly. On Wed, May 21,

Re: No such file or directory

2008-05-21 Thread Jeff Peng
> open(RULES, 'rule.pl') please use full path if you don't know where you are exactly. On Wed, May 21, 2008 at 3:45 PM, anthony brooke <[EMAIL PROTECTED]> wrote: -- Jeff Peng - [EMAIL PROTECTED] Professional Squid supports in China http://www.ChinaSquid.com/ -- To unsubscribe, e-mail: [EMAIL

Re: No such file or directory

2008-05-21 Thread anthony brooke
anthony brooke wrote: > Hello, I know that this is a very common problem, but I am very sure that > the file exist in that directory, also its permission is -rwxrwxrwx , why > does it give such an error ? What are the other potential problems that cause > this ? Thanks > > Send instant mes

Re: No such file or directory

2008-05-21 Thread anthony brooke
> Send instant messages to your online friends http://uk.messenger.yahoo.com > Anthony It would help if you could post a sample of you script and give the actuall error. open(RULES, 'rule.pl') || die "Could not open rule file 'rule.pl'. Error $!"; Could

Re: No such file or directory

2008-05-20 Thread Roman
anthony brooke wrote: Hello, I know that this is a very common problem, but I am very sure that the file exist in that directory, also its permission is -rwxrwxrwx , why does it give such an error ? What are the other potential problems that cause this ? Thanks Send instant messages to your

No such file or directory

2008-05-20 Thread anthony brooke
Hello, I know that this is a very common problem, but I am very sure that the file exist in that directory, also its permission is -rwxrwxrwx , why does it give such an error ? What are the other potential problems that cause this ? Thanks Send instant messages to your online friends http://uk

Re: AW: *.jpg: No such file or directory

2003-04-01 Thread Scott R. Godin
James Hughes wrote: > > Just a thought, but try to change to your directory first > > my $dir = '/home/me/images/'; > my @jpegs = `ls *.jpg`; > chdir ($dir) || die "Cannot chdir to $dir: $!";; > foreach (@jpegs) { > print"$_";# dont forget that a newline is still at the end of > each

AW: *.jpg: No such file or directory

2003-03-31 Thread Hughes, James
d of each element in the array... } -Ursprüngliche Nachricht- Von: mel awaisi [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 12. März 2003 03:43 An: [EMAIL PROTECTED]; [EMAIL PROTECTED] Betreff: ls: *.jpg: No such file or directory Hi My error is as the

Re: AW: ls: *.jpg: No such file or directory

2003-03-12 Thread Scott R. Godin
-Ursprüngliche Nachricht- > Von: Scott R. Godin [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 12. März 2003 11:25 > An: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Betreff: Re: ls: *.jpg: No such file or directory > > > Mel Awaisi wrote: > > > Hi > > >

RE: *.jpg: No such file or directory

2003-03-12 Thread Dan Muey
s > > my $dir = '/home/me/images/'; > my @jpegs = `ls *.jpg`; > foreach (@jpegs) { > print"$_"; # dont forget that a newline is still > at the end of each > element in the array... > } > > -

Re: ls: *.jpg: No such file or directory

2003-03-12 Thread Scott R. Godin
jpegs = `ls *.jpg`; > foreach (@jpegs) { > print"$_";# dont forget that a newline is still at the end of each > element in the array... > } > > > ls: *.jpg: No such file or directory > --- > chdir '/hom

RE: *.jpg: No such file or directory

2003-03-12 Thread Paul Boutros
t;; > foreach (@jpegs) { > > } > > -Original Message- > From: mel awaisi [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 11, 2003 8:43 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: ls: *.jpg: No such file or directory > > > Hi > &

RE: *.jpg: No such file or directory

2003-03-12 Thread Corey D. Herbel
; $!\n"; my @jpegs = <*.jpg>; foreach (@jpegs) { } -Original Message- From: mel awaisi [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 8:43 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: ls: *.jpg: No such file or directory Hi My error is as the

Re: ls: *.jpg: No such file or directory

2003-03-11 Thread Steve Grazzini
uot;$_"; # dont forget that a newline is > # still at the end of each > # element in the array... > } > > > ls: *.jpg: No such file or directory > --- I'm not sure what your question is... but since

ls: *.jpg: No such file or directory

2003-03-11 Thread mel awaisi
# dont forget that a newline is still at the end of each element in the array... } ---- ls: *.jpg: No such file or directory --- Regards, Mel _ Chat online in real time with MSN Messenger http:/

RE: "No Such File or Directory"

2002-10-15 Thread Nikola Janceski
That's not ok. use File::Path; mkpath(); if you want that functionality. > -Original Message- > From: James Edward Gray II [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 2002 2:14 PM > To: [EMAIL PROTECTED] > Subject: "No Such File or Director

"No Such File or Directory"

2002-10-15 Thread James Edward Gray II
Okay, here's a different on, mkdir() is giving me a "No Such File or Directory" error. I am passing it a string of two directories I want created, one inside the other, but the way I read the entry in Programming Perl, this is okay. Am I missing something? James -- To unsu

Re: No such file or directory exists

2001-10-24 Thread Peter Scott
At 10:12 AM 10/24/2001 -0500, [EMAIL PROTECTED] wrote: >elementary? oooh, that hurts =) Hey, everyone does it (or something like it), that's the only reason to call it elementary - because we manage to keep making the same mistakes and forgetting to check the obvious. You want to know how many

Re: No such file or directory exists

2001-10-24 Thread Greg . Froese
elementary? oooh, that hurts =) but you are right, I should have been using -w Peter Scott <[EMAIL PROTECTED]> 10/24/2001 10:03 AM To: [EMAIL PROTECTED], [EMAIL PROTECTED] cc: Subject: Re: No such file or directory exists At 09:01 AM 10/24/2001

Re: No such file or directory exists

2001-10-24 Thread Peter Scott
At 09:01 AM 10/24/2001 -0500, [EMAIL PROTECTED] wrote: >I'm working with my perl scripts in Linux and Windows. my scripts were >running fine when I ran them as "perl myscript.pl" > >but when I tried to execute the perl script using only its name >(./myscript.pl) then I would get the message "No s

Re: No such file or directory exists

2001-10-24 Thread Etienne Marcotte
walter valenti <[EMAIL PROTECTED]> > Sent by: [EMAIL PROTECTED] > 10/24/2001 09:11 AM > > > To: [EMAIL PROTECTED] > cc: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject:Re: No such file or directory exists > > Hi, > look the