RE: Perl:Tk

2005-11-03 Thread Gomez, Juan
Hi Willliam   thanks for the example it just what i need it but one question can this work too for a shell script? i am using korn shell     thank you       Armando Gomez Guajardo Process EngineerWork Ph   956 547 6438 Beeper    956 768 4070   From: [EMAIL PROTECTED] [mailto:[EMA

Re: RegExp help

2005-11-03 Thread JPerlmutter
Sekhar- i would suggest File::Basename it has three functions, one of which returns the path to the file, in this case: /install/sql/ HTH -Josh sekhar kavuru <[EMAIL PROTECTED]> 11/03/2005 11:59 AM To activeperl@listserv.ActiveState.com cc $Bill Luebkert <[EMAIL PROTECTED]>, [EMAIL PROTECT

RegExp help

2005-11-03 Thread sekhar kavuru
my $str = "/install/sql/foo.c;   from $str string I need to get "/install/sql/   Any help$Bill Luebkert <[EMAIL PROTECTED]> wrote: [EMAIL PROTECTED] wrote:> > how about we find your start and work forward? Brian did the end and work > backward, but i always like trying to find an alternative way t

Re: RegExp help

2005-11-03 Thread $Bill Luebkert
sekhar kavuru wrote: > my $str = "/install/sql/foo.c; > > from $str string I need to get *"/install/sql/ * > > Any help use File::Basename or you can use a RE: (my $dir = $str) =~ s/[^\/]+$//;# remove any non /s from end of string ___ Acti

Re: Perl:Tk

2005-11-03 Thread Williamawalters
In a message dated 11/2/2005 12:54:25 P.M. Eastern Standard Time, [EMAIL PROTECTED] writes:   > Good morning all!> > I am still learning Perl and I discover Tk which is great > I show it to my boss and he like it too much now he has ask me > To do a program using Tk is a very simple program

RE: Perl:Tk

2005-11-03 Thread Lincoln, Adym
Gomez, Juan wrote --- >Date: Wed, 2 Nov 2005 11:19:23 -0600 >From: "Gomez, Juan" <[EMAIL PROTECTED]> >Subject: Perl:Tk >To: >Hello > > Good morning all!> > >I am still learning Perl and I discover Tk which is great >I show it to my boss and he like it too much now he has ask me

RE: Perl:Tk

2005-11-03 Thread Lovett, Alan J
Sandeep Cygwin includes an implementation of an X-windows server that supports SSH. See http://x.cygwin.com/ for details. Installation isn't exactly easy, but it does work if you persevere! Look upon it as an opportunity to gain deeper understanding of X-windows ;-) Alan -Original Messa

RE: Perl:Tk

2005-11-03 Thread Brian Raven
Sandeep Deshpande <> wrote: > Dear Paul, > This is good news for me, since I work on Windows as well as Unix. I > am Not aware as how to use Tk on Unix. Since I work on PC (Windows > 2000) and access our Solaris server through SSH- client software, I > am Not able to run Tk scripts on it. Would you

RE: Perl:Tk

2005-11-03 Thread Sandeep Deshpande
Dear Paul, This is good news for me, since I work on Windows as well as Unix. I am Not aware as how to use Tk on Unix. Since I work on PC (Windows 2000) and access our Solaris server through SSH- client software, I am Not able to run Tk scripts on it. Would you also guide me, what I have to do to m

Re: Perl:Tk

2005-11-03 Thread Paul Malcher
Sandeep Deshpande wrote: >I think TK module will Not work on Unix. It works on Windows environment (I >have Not tried it on Linux yet). Thats not correct at all I've used Perl Tk on Unix,Linux and Windows. It runs perfectly on all three platforms. I have had a great deal of experience with Tk, sinc