[12666] in Perl-Users-Digest
Perl-Users Digest, Issue: 75 Volume: 9
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Jul 8 08:37:18 1999
Date: Thu, 8 Jul 1999 05:05:09 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Thu, 8 Jul 1999 Volume: 9 Number: 75
Today's topics:
About Perl Configuration with winnt4.0 * iis4.0 <serabi@www.hanbit.com>
Re: About Perl Configuration with winnt4.0 * iis4.0 <gellyfish@gellyfish.com>
Re: Active Perl Problems (Jenda Krynicky)
Re: Chopping the beginning of a variable (Jenda Krynicky)
Re: Duisable user input and language independent script (elephant)
Re: Duisable user input and language independent script (Jenda Krynicky)
Re: Expired CGI-script (Needs help quick) <artsoft@danbbs.dk>
Re: finding relative path between two files (Jenda Krynicky)
Re: Help -- Weird Increments (MacPerl) (lurker)
Re: Help -- Weird Increments (MacPerl) (Jenda Krynicky)
Re: Help -- Weird Increments (MacPerl) (Chris Nandor)
Re: Help needed: script to extract Hyperlink <kistler@fnmail.com>
Re: Help: how to capture other process's stdin/stdout ? (elephant)
Re: How to format date and year string? (I.J. Garlick)
Re: How to format date and year string? <joeyandsherry@mindspring.com>
Re: Is PERL the way to create a pop-up window ? (elephant)
Newbie: Upgrade from 5.004_04 to 5.005_03 <jamie@thale.nott.ac.uk>
Re: Perl/CGI Combined file upload & e-mail ameldridge@my-deja.com
Re: Perl/CGI Combined file upload & e-mail ameldridge@my-deja.com
Re: Problem with a SQL statement in a Perl script <rhrh@hotmail.com>
Re: Q: ASP sessions b/t VBScript and Perl <matt@sergeant.org>
Re: Subroutines in a package <j@mesduncan.co.uk>
Re: unzip <tanya@i-cable.com>
Digest Administrivia (Last modified: 1 Jul 99) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 08 Jul 1999 09:11:10 GMT
From: "kiho" <serabi@www.hanbit.com>
Subject: About Perl Configuration with winnt4.0 * iis4.0
Message-Id: <OWZg3.329$cw1.16995@news.bora.net>
Hi~
I'm troubling with some difficulties in executing perl scripts with iis4.0.
Actually, it worked very well with iis3.0.
After I changed my system in iis4.0, some problem hit me.
I don't know why it doesn't work.
Anybody can help me with this error message
===============================================
CGI Error
The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are:
Can't open perl script "???ö°????ÕË???????????lõÌØ¹??èÊ
f?p\html\ul-sukbak.html": Invalid argument
================================================
I'm looking forward to hearing your nice advice,..^^
Thanks from korea!
------------------------------
Date: 8 Jul 1999 12:41:27 +0100
From: Jonathan Stowe <gellyfish@gellyfish.com>
Subject: Re: About Perl Configuration with winnt4.0 * iis4.0
Message-Id: <37848e67@newsread3.dircon.co.uk>
kiho <serabi@www.hanbit.com> wrote:
> Hi~
> I'm troubling with some difficulties in executing perl scripts with iis4.0.
> Actually, it worked very well with iis3.0.
> After I changed my system in iis4.0, some problem hit me.
> I don't know why it doesn't work.
> Anybody can help me with this error message
> ===============================================
> CGI Error
> The specified CGI application misbehaved by not returning a complete set of
> HTTP headers. The headers it did return are:
>
>
> Can't open perl script "???ö°????ÕË???????????lõÌØ¹??èÊ
> f?p\html\ul-sukbak.html": Invalid argument
>
Unfortunately for you someone posted an almost identical question which
appears a few articles above yours in my news reader. Go to DejaNews
<http://www.deja.com> and search for "Active perl Problems" in this
group.
/J\
--
"Some saw Noel Edmonds as a stinking slimy downmarket local rep from a
package holiday firm. His critics were less kind" - Victor Lewis-Smith,
TV Offal
------------------------------
Date: Thu, 08 Jul 1999 10:40:07 GMT
From: Jenda@McCann.cz (Jenda Krynicky)
Subject: Re: Active Perl Problems
Message-Id: <1104_931430407@prague_main>
On Wed, 7 Jul 1999 11:49:27 +0100, "Paul Akehurst" <paul@wwwmail.freeserve.co.uk> wrote:
> I am running NT Server, IIS 4.0 and ActivePerl 5.17
>
> I have a simple CGI script
>
> print "Content-Type: text/html\n\n";
> print "<h1>TESTING</H1>";
>
> When I enter it into the URL I just receive the following message via the
> browser.
>
> CGI Error
>
> The specified CGI application misbehaved by not returning a complete set of
> HTTP headers. The headers it did return are:
>
> Can't open perl script
> "???????????????????????????f???f???f?????????????????1?????????????????????
> ?????????????3???????AA": Invalid argument
>
> If I run it from a DOS command line on the server it works OK.
You have upgraded from IIS3, right?
The upgrade fucks up the script map.
You should have *.pl mapped to "c:\perl\bin\perl.exe %s %s",
but the upgrade sets this to "c:\perl\bin\perl.exe %S %S"
And here Microsloths ARE case sensitive.
HTH, Jenda
------------------------------
Date: Thu, 08 Jul 1999 10:56:49 GMT
From: Jenda@McCann.cz (Jenda Krynicky)
Subject: Re: Chopping the beginning of a variable
Message-Id: <1105_931431409@prague_main>
On Wed, 07 Jul 1999 19:22:09 -0700, Harry Yu <hyu1@mipos2.intel.com> wrote:
> Hi,
> Does anyone know how to chop the beginning characters of a variable.
> The chop command works for the end of the variable.
>
> Ex. $variable = Whatever
I hope you meant
$variable = 'Whatever';
:-)
> And I want to get rid of the W, h, a.
> Anyone know a command or a way to do it?
$variable = substr $variable, 3;
or
substr( $variable, 0, 3) = '';
Jenda
------------------------------
Date: Thu, 8 Jul 1999 17:37:48 +1000
From: e-lephant@b-igpond.com (elephant)
Subject: Re: Duisable user input and language independent script
Message-Id: <MPG.11ef0059710d8957989b1f@news-server>
ulle73@my-deja.com writes ..
>*)I need to know if there is some way of disabling user input in a
>script when running an automated installation on NT?
>
>*)Is there a script tool that is language independent? I need a script
>tool that I can use to write an automated installation on NT. NT is
>installed in different languages?
this is not a task for perl .. Microsoft have a bunch of tools for
performing (what they call) unattended installations .. see the NT
Resource Kit
followups set
--
jason - remove all hyphens for email reply -
------------------------------
Date: Thu, 08 Jul 1999 11:06:59 GMT
From: Jenda@McCann.cz (Jenda Krynicky)
Subject: Re: Duisable user input and language independent script
Message-Id: <1106_931432019@prague_main>
On Thu, 08 Jul 1999 07:15:57 GMT, ulle73@my-deja.com wrote:
> Hi,
> *)I need to know if there is some way of disabling user input in a
> script when running an automated installation on NT?
Don't think so.
> *)Is there a script tool that is language independent? I need a script
> tool that I can use to write an automated installation on NT. NT is
> installed in different languages?
>
> Right now I´m using Microsoft's ScriptIt but discovered that to get a
> focus on a window you need to know the title of the window. Consequently
> I do not know the title of windows due to the different languages I'm
> using on NT.
You might try perl+Win32::Setupsup, it'll allow you to enumerate windows and child windows and all that stuff.
I'm not 100% sure it'll help though.
Jenda
------------------------------
Date: Thu, 8 Jul 1999 13:07:56 +0200
From: "Anders Thorsby" <artsoft@danbbs.dk>
Subject: Re: Expired CGI-script (Needs help quick)
Message-Id: <yD%g3.115$jh6.199@news.get2net.dk>
Thanks, RFC 2616 describing HTTP 1.1 worked!
Anders
Abigail <abigail@delanet.com> wrote in message
news:slrn7o7ri2.ued.abigail@alexandra.delanet.com...
> Anders Thorsby (artsoft@danbbs.dk) wrote on MMCXXXVI September MCMXCIII
> in <URL:news:NNKg3.263$HY5.508@news.get2net.dk>:
> ..
> .. I have a CGI-script which much expire, so the script has to be executed
> .. again if the user follows a link and using the browsers back-button.
The
> .. output of the script may not be cached!
>
> Please read the appropriate RFC. There are HTTP headers that will
> *SUGGEST* to the browser and intermediate agents not to cache documents,
> but those can be ignored. And the same RFC explicitely states that going
> back has to be treated differently when it comes to caching. Getting a
> 'stale' document this way is a *feature*, not a bug.
>
> .. Any hint, help or quick solution is usable!!!
>
> Once a document is in my hands, *I* decide how to deal with it. If you
> don't want it cached, don't send it out.
>
>
> Abigail
> --
>
perl5.004 -wMMath::BigInt -e'$^V=Math::BigInt->new(qq]$^F$^W783$[$%9889$^F47
]
>
.qq]$|88768$^W596577669$%$^W5$^F3364$[$^W$^F$|838747$[8889739$%$|$^F673$%$^W
]
>
.qq]98$^F76777$=56]);$^U=substr($]=>$|=>5)*(q.25..($^W=@^V))=>do{print+chr$^
V
> %$^U;$^V/=$^U}while$^V!=$^W'
>
>
> -----------== Posted via Newsfeeds.Com, Uncensored Usenet News
==----------
> http://www.newsfeeds.com The Largest Usenet Servers in the World!
> ------== Over 73,000 Newsgroups - Including Dedicated Binaries Servers
==-----
------------------------------
Date: Thu, 08 Jul 1999 11:24:56 GMT
From: Jenda@McCann.cz (Jenda Krynicky)
Subject: Re: finding relative path between two files
Message-Id: <1107_931433096@prague_main>
On 6 Jul 1999 17:55:27 -0500, abigail@delanet.com (Abigail) wrote:
> Neale Morison (nmorison@ozemail.com.au) wrote on MMCXXXV September
> MCMXCIII in <URL:news:cNng3.3153$A55.21785@ozemail.com.au>:
> !! Is there anything substantially different to your code in the code below?
> !!
> !! sub find_relative_path2 ($$) {
> !! my @f = split m {/}, shift;
> !! pop @f;
> !! my @s = split m {/}, shift;
> !! while (@f && @s && $f [0] eq $s [0]) {shift @f; shift @s}
> !! join q {/}, ('..') x @f, @s or ('.');
> !! }
>
>
> Nope, they are the same.
>
> Abigail
OK, so why the obfuscation?
I think of myself as a seasoned perl monger, but still it took me a few moments to find out what the heck are you
doing.
Why
q q..q
instead of
'..'
?
Jenda
http://Jenda.Krynicky.cz
------------------------------
Date: Thu, 08 Jul 1999 18:51:27 +0900
From: aquifer @dd.iijn4u.or.jp (lurker)
Subject: Re: Help -- Weird Increments (MacPerl)
Message-Id: <B3AAA3AF96682C1BBA@h102.p071.iij4u.or.jp>
In article <931390249.12510@www.remarq.com>,
johnny99 <john@your.abc.net.au> wrote:
>(stuff deleted)
>
>Here's a script I put together to reproduce the effect:
>
> open (NUMBER,"+<data.txt");
> $num = <NUMBER>;
> print "I got $num from the data.txt file ";
> $num++;
> print "and I incremented it to $num.\n";
> print NUMBER $num;
> close (NUMBER);
>
>which produces these effects, (starting with a zero as the
>contents of data.txt):
>
>I got 0 from the data.txt file and I incremented it to 1.
>I got 01 from the data.txt file and I incremented it to 02.
>I got 0102 from the data.txt file and I incremented it to
>0103.
>I got 01020103 from the data.txt file and I incremented it
>to 01020104.
>I got 0102010301020104 from the data.txt file and I
>incremented it to 0102010301020105.
>
>(stuff deleted)
>
It seems to me that the number "o" in "data.txt"
has not carrige return. The results is written after
the number "0". Moreover, the sentence "print
NUMBER $num;" has not "\n".
1) stroke return key after the number "o" in the data.
2) print NUMBER $num; -> print NUMBER "$num\n";
Good luck!
lurker
------------------------------
Date: Thu, 08 Jul 1999 11:33:11 GMT
From: Jenda@McCann.cz (Jenda Krynicky)
Subject: Re: Help -- Weird Increments (MacPerl)
Message-Id: <1108_931433591@prague_main>
You need to seek() to the start of the file after you read the value.
There is another thing, I do not see any locking.
I'm using this function :
sub IncCounter { # IncCounter( $file [, $increment] )
my $file = shift() or return undef;
$file = $$file if ref $file;
my $inc = shift() || 1;
my $value;
local *INPUT;
if (open INPUT, "+<$file") {
flock INPUT, $LOCK_EX;
$value = <INPUT>;
seek INPUT, 0, 0;
} else {
open INPUT, ">$file" or return 0;
my $LOCK_EX = 2;
flock INPUT, $LOCK_EX;
$value=0;
}
print INPUT $value+$inc,"\n";
close INPUT;
return $value;
}
The whole module is at
http://Jenda.Krynicky.cz/perl/Counter.pm
http://Jenda.Krynicky.cz
------------------------------
Date: Thu, 08 Jul 1999 12:01:49 GMT
From: pudge@pobox.com (Chris Nandor)
Subject: Re: Help -- Weird Increments (MacPerl)
Message-Id: <pudge-0807990801540001@192.168.0.17>
In article <1108_931433591@prague_main>, Jenda@McCann.cz (Jenda Krynicky) wrote:
# There is another thing, I do not see any locking.
This is MacPerl, the poster said.
# flock INPUT, $LOCK_EX;
flock() is unimplemented in MacPerl.
--
Chris Nandor mailto:pudge@pobox.com http://pudge.net/
%PGPKey = ('B76E72AD', [1024, '0824090B CE73CA10 1FF77F13 8180B6B6'])
------------------------------
Date: Thu, 08 Jul 1999 11:09:44 +0200
From: Per Kistler <kistler@fnmail.com>
To: Michael Barst <barst@goethe.de>
Subject: Re: Help needed: script to extract Hyperlink
Message-Id: <37846AD8.9C3EA8DE@fnmail.com>
Hi Michael
If the input comes linewise, than one could do it
like that:
my @lines; # filled somewhere else
for my $line ( @lines ){
next unless $line =~ /wwwais/;
my $link;
if( $line =~ m{<a href="(.*?)</a>} ){
$link = $1;
# process $link
}
}
Cheers, Per.
Michael Barst wrote:
> I try to replace all links to our searchengine with
> a new call to another indexer.
> ---
> example:
> <a
> href="http://www.goethe.de/cgi-bin/wwwwais/af?title=Suchen+in+der+Region+Sub
> -Sahara&text=Geben+Sie+bitte+ein+Suchwort+ein:&resulttext=Suchergebnis+zu&no
> resulttext=Kein+Suchergebnis+zu"> <img src="../gif/lupe.gif" border=0
> WIDTH=24 HEIGHT=12> Suchen</a>
> ---
> I want everything in the link between the < a href =" and </a> but only
> where there is a reference to wwwwais.
> Michael
--
Per Kistler kistler@fnmail.com / kistler@gmx.net
------------------------------------------------------------
------------------------------
Date: Thu, 8 Jul 1999 18:03:02 +1000
From: e-lephant@b-igpond.com (elephant)
Subject: Re: Help: how to capture other process's stdin/stdout ?
Message-Id: <MPG.11ef06414c69b383989b21@news-server>
Gump Xu writes ..
> I am writing a Perl program which will start other
>shell programs and need to send inputs(stdin) to them and
>check their stdout.
> I don't know how to do it via Perl. Anyone help me?
perldoc IPC::Open2
--
jason - remove all hyphens for email reply -
------------------------------
Date: Thu, 8 Jul 1999 09:53:37 GMT
From: ijg@connect.org.uk (I.J. Garlick)
Subject: Re: How to format date and year string?
Message-Id: <FEJq5E.Lrt@csc.liv.ac.uk>
In article <7m12fu$1tj$1@nntp1.atl.mindspring.net>,
<joeyandsherry@mindspring.com> writes:
> Here's what I'd use:
Gaaackkk.
Please don't perpetuate code like that. Someone else will probably have
jumped all over you with size 12 hob nail boots by now. (I could point out
most of the problems but th gurus will get them all)
Also I can't believe this isn't a FAQ.
my @tm = (localtime)[3..5];
my $thedate = sprintf("%4d/%02d/%02d",$tm[2]+1900,$tm[1]+1,$tm[0]);
(Shamelessly copied from the Cookbook) Thanks Tom. Wonderful book.
--
Ian J. Garlick
ijg@csc.liv.ac.uk
As long as the answer is right, who cares if the question is wrong?
------------------------------
Date: Thu, 8 Jul 1999 06:43:47 -0400
From: <joeyandsherry@mindspring.com>
Subject: Re: How to format date and year string?
Message-Id: <7m1vgv$e46$1@nntp3.atl.mindspring.net>
Okay, better watch where I steal from.
When your thirsty for it and you're so new...you haven't yet heard the last
echo of the word perl, you try anything.
Thanks!
--
Joey Cutchins
President
Trading Post.Com, L.L.C.
The Race is to the Driven, Not the Swift.
http://internettradingpost.com
ceo@internettradingpost.com
------------------------------
Date: Thu, 8 Jul 1999 19:26:34 +1000
From: e-lephant@b-igpond.com (elephant)
Subject: Re: Is PERL the way to create a pop-up window ?
Message-Id: <MPG.11ef19d867c00399989b22@news-server>
Bart Lateur writes ..
>Jordan Hiller wrote:
>>They are usually doing it with JavaScript. JavaScript pretty well is THE ONLY
>>answer (although you could investigate VBScript and Java)...Perl is probably
>
>Anyway: these dumb popup windows are one of the reasons why people turn
>of JavaScript.
I think those popup windows are good when used appropriately .. like to
inform a user of invalid form input before sending to the CGI script ..
very simple to do some preliminary checking this way and have the user
adjust the information without doing a server round-trip
--
jason - remove all hyphens for email reply -
------------------------------
Date: Thu, 8 Jul 1999 12:26:51 +0100
From: Jamie Kincaid <jamie@thale.nott.ac.uk>
Subject: Newbie: Upgrade from 5.004_04 to 5.005_03
Message-Id: <Pine.SOL.3.96.990708115914.27724C-100000@thale>
Hi,
In the INSTALL notes for 5.005 it says about recompiling extensions:
If you have dynamically loaded extensions
that you built under perl 5.003 or 5.004, you can continue to use them
with 5.004, but you will need to rebuild and reinstall those extensions
to use them 5.005.
Can I therefore just tar up and move all the stuff into the new site_perl
directory ie /usr/local/lib/perl5/site_perl/5.005
I don't understand what is meant by dynamically loaded extensions.
Jamie
-------------------------------------------------------------------------------
Jamie Kincaid
Nottingham Arabidopsis Stock Centre
School of Biological Sciences
University Park
The University of Nottingham
Nottingham
NG7 2RD
Office: 0115 951 3091
NASC website: nasc.nott.ac.uk
------------------------------
Date: Thu, 08 Jul 1999 11:23:23 GMT
From: ameldridge@my-deja.com
Subject: Re: Perl/CGI Combined file upload & e-mail
Message-Id: <7m21n6$8fn$1@nnrp1.deja.com>
You’re so incredibly funny Martin,
What my question was has anyone been able to do it?
I'll take it from your answer you haven't a clue!
Also you might what to take proper language lessons, as your English
spelling is lousy!
Thanks to those who answered sensibly
Kind regards
Aaron
In article <37839872.6669B7B4@adoma.se>,
Martin Quensel <martin@adoma.se> wrote:
>
>
> ameldridge@gecapital.com wrote:
> >
> > Hello to all,
> >
> > I need to be able to have a HTML form/Perl/CGI script that will
enable
> > customers to upload a file from their PC & then will automatically
send
> > me an e-mail inform me of this action (complete with the file
details,
> > size, name etc..).
> >
> > I have been able to perform both these tasks separately but I need
> > desperately to combine these scripts.
> >
> > I’m using cgi-lib (kinda hacked around by myself) for the File
Upload &
> > a mailform script (again hacked about) from Bignosebird.com
> >
> > Thanks in advance
> >
> what is your question then??
> is it:
> is anyone here intrested in doing it for me??
> or maybee:
> how do i learn perl, so i can do it myself??
>
> Best regards
> Martin Quensel
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 08 Jul 1999 11:25:08 GMT
From: ameldridge@my-deja.com
Subject: Re: Perl/CGI Combined file upload & e-mail
Message-Id: <7m21qe$8hc$1@nnrp1.deja.com>
You’re so incredibly funny Martin,
What my question was has anyone been able to do it?
I'll take it from your answer you haven't a clue!
Also you might what to take proper language lessons, as your English
spelling is lousy!
Thanks to those who answered sensibly
Kind regards
Aaron
In article <37839872.6669B7B4@adoma.se>,
Martin Quensel <martin@adoma.se> wrote:
>
>
> ameldridge@gecapital.com wrote:
> >
> > Hello to all,
> >
> > I need to be able to have a HTML form/Perl/CGI script that will
enable
> > customers to upload a file from their PC & then will automatically
send
> > me an e-mail inform me of this action (complete with the file
details,
> > size, name etc..).
> >
> > I have been able to perform both these tasks separately but I need
> > desperately to combine these scripts.
> >
> > I’m using cgi-lib (kinda hacked around by myself) for the File
Upload &
> > a mailform script (again hacked about) from Bignosebird.com
> >
> > Thanks in advance
> >
> what is your question then??
> is it:
> is anyone here intrested in doing it for me??
> or maybee:
> how do i learn perl, so i can do it myself??
>
> Best regards
> Martin Quensel
>
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.
------------------------------
Date: Thu, 08 Jul 1999 10:01:12 +0100
From: Richard H <rhrh@hotmail.com>
Subject: Re: Problem with a SQL statement in a Perl script
Message-Id: <378468D8.6EE28B6F@hotmail.com>
Same as the above, you need to show your &Connect code and the error
message generated when you can't insert what you want to insert, theres
no indication of where the problem actually is.
If youre not getting errors out:
$dbh->connect('blah','blah',etc) || die "didnt connect cos :
$DBI::errstr ";
Richard H
------------------------------
Date: Thu, 08 Jul 1999 11:19:56 +0100
From: Matt Sergeant <matt@sergeant.org>
Subject: Re: Q: ASP sessions b/t VBScript and Perl
Message-Id: <37847B4C.D60131F5@sergeant.org>
Joe Tseng wrote:
>
> I want to start creating ASP *cough* scripts using Perl and would like
> to know something... If I incorporate sessions (or anything that is
> server-side dependent) under VBScript *cough* can I pass those values to
> Perl or other types of ASP scripts?
You can only pass them to other ASP scripts (unless you put them in the
querystring or in hidden form elements). You can use PerlScript in ASP
(from ActiveState) to directly access the session object.
Matt.
------------------------------
Date: Thu, 8 Jul 1999 10:28:51 +0100
From: "James A. Duncan" <j@mesduncan.co.uk>
Subject: Re: Subroutines in a package
Message-Id: <37846fe6.0@news.proweb.co.uk>
Thanks to Tom. C, and Guy Decoux I have exactly what I need now in
Devel::Symdump.
Thanks for all the help.
Regards,
James.
--
James A. Duncan ~ WebFusion Systems Administrator
james@webfusion.co.uk ~ j@mesduncan.co.uk
Ronald J Kimball wrote in message
<1duln1v.1topsc5q8of6N@p86.block2.tc1.state.ma.tiac.com>...
>James A. Duncan <j@mesduncan.co.uk> wrote:
>
>> Marcel wrote in message <3784244f.2993854@enews.newsguy.com>...
>> >pmtools are at http://language.perl.com/misc/pmtools-1.00.tar.gz
>>
>> I've already gone down that route. I'm looking for a method to get the
>> subnames without actually having to open a file and parse the text. But
>> thanks for the pointer, if all else fails....
>
>In that case, could you be more specific about what you had in mind?
>Obviously, the file must be opened and parsed in some manner in order to
>get the subroutine names.
>
>--
> _ / ' _ / - aka -
>( /)//)//)(//)/( Ronald J Kimball rjk@linguist.dartmouth.edu
> / http://www.tiac.net/users/chipmunk/
> "It's funny 'cause it's true ... and vice versa."
------------------------------
Date: Thu, 08 Jul 1999 17:24:05 +0800
From: Tanya <tanya@i-cable.com>
To: Torcuato <torcu99@teleline.es>
Subject: Re: unzip
Message-Id: <37846E34.F1D6D026@i-cable.com>
no
since using a broswer to upload file to server can be only by the method
"one by one"
so i would like to upload a zipped file with many files inside, then
unzip it after upload it
to the server, so that i can put many files to the server but just upload
only one zip file
that is my situation, so can you help me because i can only run this
script under shell....
THX
Torcuato wrote:
> Tanya <tanya@i-cable.com> escribió en el mensaje de noticias
> 3782D248.12ED5DAC@i-cable.com...
> > after uploaded a zipped file by a broswer
> > how can i unzip the file ?
> >
> > system("unzip filenhame.zip"); #### is that right #####
> >
> > please help and reply tp tanya@i-cable.com
> > thx
> > Use winzip (¿really you don´t knew it?)
------------------------------
Date: 1 Jul 99 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 1 Jul 99)
Message-Id: <null>
Administrivia:
The Perl-Users Digest is a retransmission of the USENET newsgroup
comp.lang.perl.misc. For subscription or unsubscription requests, send
the single line:
subscribe perl-users
or:
unsubscribe perl-users
to almanac@ruby.oce.orst.edu.
To submit articles to comp.lang.perl.misc (and this Digest), send your
article to perl-users@ruby.oce.orst.edu.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
To request back copies (available for a week or so), send your request
to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
where x is the volume number and y is the issue number.
The Meta-FAQ, an article containing information about the FAQ, is
available by requesting "send perl-users meta-faq". The real FAQ, as it
appeared last in the newsgroup, can be retrieved with the request "send
perl-users FAQ". Due to their sizes, neither the Meta-FAQ nor the FAQ
are included in the digest.
The "mini-FAQ", which is an updated version of the Meta-FAQ, is
available by requesting "send perl-users mini-faq". It appears twice
weekly in the group, but is not distributed in the digest.
For other requests pertaining to the digest, send mail to
perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
sending perl questions to the -request address, I don't have time to
answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V9 Issue 75
************************************