Regular Expressions
thanks
rakesh
Hi all
I feel akward to ask this question, I know this is not the right place to
ask this question.
well I have to prepare for the tech. interview for the post of Perl
Programmer (first time).
I have tried google but not usefull, so any of you can sugest tips,
questions or any thing
that helps.
T
Hello folks
I am thinking to built port scanner in perl. for port scanning I am using
SYN packet.
Can any body suggest some online document or mannuals for this.
with regards
Rakesh
Hi
I am trying to connect with mysql
code: -
#! /usr/bin/perl
-w
use warnings;
use DBI;
my $host ="xyz";
my $user ="user";
my $pass ="mysql";
my $db_name ="test";
$dsn ="DBI:mysql:database=$db_name;host=$host";
$dbh = DBI->connect($dsn,$user,$pass) or die "Cannot able to connect: $!\n";
error
On 11/10/05, Marilyn Sander <[EMAIL PROTECTED]> wrote:
>
>
> On Nov 9, 2005, at 4:52 PM, Pablo Wolter wrote:
>
> > The system function call returns a boolean value as return value, I
> > don't
> > remember if 1 is for fail and 0 for success or viceversa.
>
> Actually it is not a boolean value. It i
Hi folks
Can any body tell me how to change the owner of a file ??
I have written this script ...
unless (chown $uid , $gid , $filename)
{
die "chown failed :$!";
}
this code will give me the error you can't change " permission denied "
can any body tell me , how to over come this error