Re: RegExp Help ! (appended question about regex choice ( [^\"]*)vs. (+*?))

2004-05-11 Thread John W. Krahn
William M West wrote: > > David Dorward wrote: > > > >(my $action) = ($html =~ /action=\"(.*?)\"/); > > > >That gives the same as my example. > > using parentheses to capture matches is really neat :) i > did not know that you could do that. It is not the parentheses per se that capture matche

Ignoring Files With Spaces In Them

2004-05-11 Thread Jason Dusek
How do I get the wanted function in a find call to ignore file names with spaces in them? I want to catch all files with the suffii '.pro' and .'idl' but some Windows user has put files like 'Foo Bar Har.pro' on the system. I am trying: sub wanted { if (/\.(pro|idl)$/ && !/\w+\s+\w+/) {

DBD for SQL Server?

2004-05-11 Thread Richard Crawford
Is there a DBD for SQL Server so that I can connect to our SQL Server 2000 database with DBI? I've hunted all over CPAN but I can't seem to find one. -- Richard S. Crawford Programmer III, UC Davis Extension Distance Learning Group (http://unexdlc.ucdavis.edu) (916)327-7793 / [EMAIL PROTECTED]

Re: Ignoring Files With Spaces In Them

2004-05-11 Thread Jeff 'japhy' Pinyan
On May 11, Jason Dusek said: >How do I get the wanted function in a find call to ignore file names >with spaces in them? I want to catch all files with the suffii '.pro' >and .'idl' but some Windows user has put files like 'Foo Bar Har.pro' on >the system. I am trying: > > sub wanted { > if

building a dependency tree

2004-05-11 Thread Andrew Gaffney
I am writing a Perl version of Gentoo Linux's Portage package management tool just for the heck of it (and I think I can do it better (yes, I am full of myself ;) )). I already have a good portion of the program done except for the main part: building the dependency tree. My program can current

Net::Telnet executing commands on remote shell after executing su

2004-05-11 Thread Ramprasad A Padmanabhan
Hi, I am using Net::Telnet and getting a new shell on a remote machine all my commands work fine Now suppose I become root using "su" and "pass" I am not able to execute commands on this root shell Can anyone show me How I can do this THanks Ram -- To unsubscribe, e-mail: [EMAIL PROTECTED