Re: what's your most favourite feature of perl?

2006-12-26 Thread Rakesh Mishra
Regular Expressions thanks rakesh

Help me out....

2006-03-09 Thread Rakesh Mishra
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

Help Needed

2006-01-17 Thread Rakesh Mishra
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

Problem while connecting with Mysql

2005-12-26 Thread Rakesh Mishra
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

Re: "system" command help

2005-11-09 Thread Rakesh Mishra
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

How to change the Owner of a file

2005-10-31 Thread Rakesh Mishra
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