Forum: Perl Sep 18th, 2009 |
| Replies: 1 Views: 5,482 Thanks guys :
I thought one idea :
my $rand=int rand(100*100000);
How it would be ????? |
Forum: Perl Sep 16th, 2009 |
| Replies: 3 Views: 532 Hi Guys,
Can any one suggest to generate a random number of eight digit.
All suggestions are welcomed :) |
Forum: Perl Aug 14th, 2009 |
| Replies: 5 Views: 1,038 I am calling the script as exec(called_script.pl, arg1), its calling first time , second execution is not going, it is killing the main process. My second question refers all the time loop increases... |
Forum: Perl Aug 12th, 2009 |
| Replies: 5 Views: 1,038 Hey Guys,
Have u any Idea how to call a perl script within my main script in a loop.
I used system and exec both, but it seems to be not working. I want the second calling of the script... |
Forum: Perl Jul 15th, 2009 |
| Replies: 2 Views: 321 listout all installed module in ur computer
$ instmodsh <enter> press l
if that module is not installed , then install it ,,,,, |
Forum: Perl Jun 30th, 2009 |
| Replies: 7 Views: 693 Hi
Can u clearly tell wt u want to do ????? |
Forum: Perl Jun 26th, 2009 |
| Replies: 8 Views: 760 open(FILE,"1.txt") || die "$!"; ## 1.txt is a file name
%seen =();
$line=0 ;
while (<FILE>)
{
$seen{$_}++;
$line++;
print "$line : $_" if $seen{$_} > 1 ;
} |
Forum: Perl Jun 23rd, 2009 |
| Replies: 1 Views: 460 Hi All,
Can any one suggest how to connect remote more than one remote server one by one inside a loop through Net::SSH::Perl package ? , I have to connect to 9 remote server, I am able to... |
Forum: Perl Jun 6th, 2009 |
| Replies: 4 Views: 490 I am trying to use rsync tool of linux ???? I am trying to develop a script by using this script ??? any help ... |
Forum: Perl Jun 5th, 2009 |
| Replies: 4 Views: 490 Hey guys,
How I will come to know my perl script for copying files (generally very big sized file 1000 gb ) between two server successed or interupted ? How I will get the error... |