Re: .profile not being read

2013-02-14 Thread Nathan Hilterbrand
On 02/14/2013 11:53 AM, Hal Wigoda wrote: The MAC OSX uses the bash profile .bash-profile On Thu, Feb 14, 2013 at 9:14 AM, Lawrence Statton wrote: On 02/14/2013 08:47 AM, Gerard Walschap wrote: I just installed perl on my Mac following the instructions on the perl.org website. It see

Re: obfuscating code

2013-02-14 Thread Rajeev Prasad
From: Paul Johnson To: John SJ Anderson Cc: beginners@perl.org Sent: Wednesday, February 13, 2013 5:50 PM Subject: Re: obfuscating code On Tue, Feb 12, 2013 at 03:18:51PM -0800, John SJ Anderson wrote: > > On Feb 12, 2013, at 3:05 PM, Kevin Walzer wrote: > > > Does Perl have the equivale

Re: .profile not being read

2013-02-14 Thread Hal Wigoda
The MAC OSX uses the bash profile .bash-profile On Thu, Feb 14, 2013 at 9:14 AM, Lawrence Statton wrote: > On 02/14/2013 08:47 AM, Gerard Walschap wrote: >> >> I just installed perl on my Mac following the instructions on the >> perl.org website. It seems to work, as "perl -v" returns "Th

Re: obfuscating code

2013-02-14 Thread Brandon McCaig
On Thu, Feb 14, 2013 at 09:11:39AM +0200, Octavian Rasnita wrote: > I read it, but it is limited to only a kind of software > business. Those who create text editors like UltraEdit, TextPad > or others and sell their product are in another type of > software business because they offer a 1-time dea

Re: .profile not being read

2013-02-14 Thread Lawrence Statton
On 02/14/2013 08:47 AM, Gerard Walschap wrote: I just installed perl on my Mac following the instructions on the perl.org website. It seems to work, as "perl -v" returns "This is perl 5, version 16, subversion 0 (v5.16.0) built for darwin-2level..." The thing is that the comman

.profile not being read

2013-02-14 Thread Gerard Walschap
I just installed perl on my Mac following the instructions on the perl.org website. It seems to work, as "perl -v" returns "This is perl 5, version 16, subversion 0 (v5.16.0) built for darwin-2level..." The thing is that the commands in my .profile file are no longer being execu

Re: Question regarding while loops for reading files

2013-02-14 Thread Tiago Hori
Hi Jim, Thanks again. Very helpful as usual! T. On 2013-02-13, at 11:37 PM, Jim Gibson wrote: > > On Feb 13, 2013, at 6:47 PM, Tiago Hori wrote: > >> Hey Guys, >> >> I am still at the same place. I am writing these little pieces of code to >> try to learn the language better, so any advice

Re: Question regarding while loops for reading files

2013-02-14 Thread Tiago Hori
Hi John, Thanks. What I was trying to do there was to test if there was any numbers in the the first element of the first line. That was intended to get rid of the header line. I meant to use [0-9]* as character class to say "if there aren't any number of integers in the first element, next".