[32891] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 4169 Volume: 11

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue Mar 11 00:09:30 2014

Date: Mon, 10 Mar 2014 21:09:05 -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           Mon, 10 Mar 2014     Volume: 11 Number: 4169

Today's topics:
    Re: [CM] OStatic on Package Mgmt & Perl <gravitalsun@hotmail.foo>
    Re: cpan <maus@mail.com>
    Re: I would like to know if any Perl Programmer is inte <cwilbur@chromatico.net>
        I would like to know if any Perl Programmer is interest <bose.kamineni@gmail.com>
    Re: I would like to know if any Perl Programmer is inte <bose.kamineni@gmail.com>
    Re: Running a script as if it were a Windows executable <jurgenex@hotmail.com>
    Re: Running a script as if it were a Windows executable <alektrishan@gmail.com>
    Re: Running a script as if it were a Windows executable <sbryce@scottbryce.com>
    Re: Running a script as if it were a Windows executable <alektrishan@gmail.com>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Fri, 07 Mar 2014 22:16:10 +0200
From: George Mpouras <gravitalsun@hotmail.foo>
Subject: Re: [CM] OStatic on Package Mgmt & Perl
Message-Id: <lfd9ep$tbs$1@news.ntua.gr>

many times I find it easier (especially on old installations) to take 
backup, perform a format/clean install , and restore the data than 
trying to upgrade.


------------------------------

Date: 9 Mar 2014 11:55:07 GMT
From: greymausg <maus@mail.com>
Subject: Re: cpan
Message-Id: <slrnlhol3j.375.maus@gmaus.org>

On 2014-03-08, Rainer Weikusat <rweikusat@mobileactivedefense.com> wrote:
> greymausg <maus@mail.com> writes:
>> I start CPAN, and enter, say, "i /^Text/". How do 
>> I stop the deluge of answers, as in 'more'?
>
> The CPAN shell supports | and > with their 'usual' (shell) meaning you
> can do a
>
> i /^Text/ | less
>
> in order to pipe the result to the less program (according to the
> documentation, there has to be a space in front of the |).
>
> NB: In contrast to the documentation, at least the CPAN shell I used for
> testing didn't ignore SIGPIPE which meant that it suddenly exited when
> terminating the pager before it read all of the output. An explicit
>
> ! $SIG{PIPE} = 'IGNORE'
>
> could be used to work around that.

Thanks.

-- 
maus
 .
  .
 ...


------------------------------

Date: Mon, 10 Mar 2014 13:16:12 -0400
From: Charlton Wilbur <cwilbur@chromatico.net>
Subject: Re: I would like to know if any Perl Programmer is interested in opportunity with Oracle India, Bangalore, India
Message-Id: <87y50ikm8z.fsf@new.chromatico.net>

>>>>> "BKBose" == Bose Kamineni <bose.kamineni@gmail.com> writes:

    BKBose> All- Oracle India, Bangalore, India has an opportunity

 ...that should have been posted on http://jobs.perl.org and not here.

By posting a job post here, you demonstrate that you do not care for
Usenet manners and that you cannot be bothered to do a minimal web
search.  This is not the message you want to send to competent potential
employees.

Charlton


-- 
\Charlton Wilbur
cwilbur@chromatico.net


------------------------------

Date: Mon, 10 Mar 2014 05:24:02 -0700 (PDT)
From: Bose Kamineni <bose.kamineni@gmail.com>
Subject: I would like to know if any Perl Programmer is interested in opportunity with Oracle India, Bangalore, India
Message-Id: <8273a8df-b92f-4cd4-926b-4df1bb6653b5@googlegroups.com>

All- Oracle India, Bangalore, India has an opportunity with Health Sciences Global Business Unit for a Perl Programmer. Please reach out to me at bose.kamineni@gmail.com to know more about this full time opportunity.


------------------------------

Date: Mon, 10 Mar 2014 20:56:15 -0700 (PDT)
From: Bose Kamineni <bose.kamineni@gmail.com>
Subject: Re: I would like to know if any Perl Programmer is interested in opportunity with Oracle India, Bangalore, India
Message-Id: <1ff93420-03fe-4681-9779-fa5800b75389@googlegroups.com>

On Monday, March 10, 2014 10:46:12 PM UTC+5:30, Charlton Wilbur wrote:
> >>>>> "BKBose" == Bose Kamineni <bose.kamineni@gmail.com> writes:
> 
> 
> 
>     BKBose> All- Oracle India, Bangalore, India has an opportunity
> 
> 
> 
> ...that should have been posted on http://jobs.perl.org and not here.
> 
> I am sorry about that.
> 
> By posting a job post here, you demonstrate that you do not care for
> 
> Usenet manners and that you cannot be bothered to do a minimal web
> 
> search.  This is not the message you want to send to competent potential
> 
> employees.
> 
> 
> 
> Charlton
> 
> 
> 
> 
> 
> -- 
> 
> \Charlton Wilbur
> 
> cwilbur@chromatico.net



------------------------------

Date: Sat, 08 Mar 2014 19:26:14 -0800
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: Running a script as if it were a Windows executable?
Message-Id: <sdnnh9h43qgao2nlemcdtu5ejsk0jjt8g2@4ax.com>

Alek Trishan <alektrishan@gmail.com> wrote:
>I have a perl script that I can run by opening a command window and typing
>	perl.exe myscript.pl
>
>I would like to create an "executable" file (but not a desktop shortcut) 
>that, when clicked on, would execute that command.

Very easy. You just need to associate the file type *.pl with your Perl
interpreter. Normally the Setup process for your Perl system will do
that automatically.  
But if the association is broken, then right-click on a *.pl file,
select "Open With" and re-create the association to the Perl
interpreter.

jue


------------------------------

Date: Sun, 09 Mar 2014 15:28:37 -0400
From: Alek Trishan <alektrishan@gmail.com>
Subject: Re: Running a script as if it were a Windows executable?
Message-Id: <lfifd4$tgu$1@dont-email.me>

On 3/8/2014 10:26 PM, Jürgen Exner wrote:
> Alek Trishan <alektrishan@gmail.com> wrote:
>> I have a perl script that I can run by opening a command window and typing
>> 	perl.exe myscript.pl
>>
>> I would like to create an "executable" file (but not a desktop shortcut)
>> that, when clicked on, would execute that command.
>
> Very easy. You just need to associate the file type *.pl with your Perl
> interpreter. Normally the Setup process for your Perl system will do
> that automatically.
> But if the association is broken, then right-click on a *.pl file,
> select "Open With" and re-create the association to the Perl
> interpreter.

Brilliant!!! Thanks so much. :-)


------------------------------

Date: Sun, 09 Mar 2014 19:04:21 -0600
From: Scott Bryce <sbryce@scottbryce.com>
Subject: Re: Running a script as if it were a Windows executable?
Message-Id: <lfj32p$lhv$1@dont-email.me>

On 3/8/2014 5:23 PM, Alek Trishan wrote:
> I have a perl script that I can run by opening a command window and
> typing perl.exe myscript.pl
>
> I would like to create an "executable" file (but not a desktop
> shortcut) that, when clicked on, would execute that command.

Windows still supports batch files, does it not?



------------------------------

Date: Mon, 10 Mar 2014 13:00:41 -0400
From: Alek Trishan <alektrishan@gmail.com>
Subject: Re: Running a script as if it were a Windows executable?
Message-Id: <lfkr3n$gao$1@dont-email.me>

On 3/9/2014 9:04 PM, Scott Bryce wrote:
> On 3/8/2014 5:23 PM, Alek Trishan wrote:
>> I have a perl script that I can run by opening a command window and
>> typing perl.exe myscript.pl
>>
>> I would like to create an "executable" file (but not a desktop
>> shortcut) that, when clicked on, would execute that command.
>
> Windows still supports batch files, does it not?
>

Yes, it does.

However, associating .pl with perl.exe means that I do not need a batch 
file as a workaround.


------------------------------

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:

To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.

Back issues are available via anonymous ftp from
ftp://cil-www.oce.orst.edu/pub/perl/old-digests. 

#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 V11 Issue 4169
***************************************


home help back first fref pref prev next nref lref last post