RE: Re: Excel

2001-10-23 Thread is09
I am actually looking for a row count in the while spreadsheet nt just a range. La cuisson du pot au feu <[EMAIL PROTECTED]> wrote: >Le Mardi 23 Octobre 2001 16:24, F.H a écrit : >You need to use >Range["B9"]->CurrentRegion->Rows->Count; >Range["B9"]->CurrentRegion->Column->Count; > > >hi, Alon

RE: Combine passwd files

2001-10-23 Thread is09
Here's one for you. I am hoping someone can criticize this or suggest some better way of writing parts of this code. Regards I.S #!/usr/bin/perl -w use strict; my $pass1 = "./passwd"; my $pass2 = "./passwd.old"; open PASS1 , "< $pass1" or die "Error opening $pass1: $!\n";; open PASS2 , "< $

source csh

2001-11-08 Thread is09
Hi all, Is there a nice and neat way of writing this: #!/bin/perl $command1 = "/bin/csh"; $command2 = "source /usr/users/.cshrc"; system "command1"; system "command2"; Thanks I.S __ Your favorite stores, helpful shopping tools and

RE: Re: source csh

2001-11-08 Thread is09
It seems that Perl doesn't pick up env variables (on UNIX) automatically. the code below contain only a portion of the program and calls so many env variables. so instead of using %ENV and call each env variable. I wanted to use source to grab all my env. vars at once. I hope I am a little clea