http://www.tuaw.com/2007/07/10/scanning-...
and I really wish I could use it except the perl program site for it doesn t exist anymore. I can t comment on that website for some reason so I m wondering if anyone who has experienced this same situation has any idea how to convert these backup files to a sqlite3 file. Any help would be greatly appreciated! Thanks in advance!
Let s say i have a perl script "Example.pl" which returns "hello".I want another perl script "example2.pl" which will run the example.pl and give a output like "hello there!".is there any way to do it?
in fact the 1st perl script stores the output in a file.Let s say it stores the output in "file.txt".I want the 2nd perl script to - run the 1st script- read the output from the file and then give an output like "hello there". A small example would be more appreciated. thanks in advance..
I m using Windows XP and I m trying to install Perl for my Apache server- but it s just a bunch of files that I m not sure what to do with. How do I install it?
tell me if you do i really need one
Here is some Perl Code...
if ($_ =~ /^Process/)
{(undef-$jobName-undef-$project-undef) = split /\s+/-$_;
$jobName = uc($jobName);
$project = uc($project);
$project =~ s/\_DEP$/i/;
elsif ($_ =~ /^Command Line\: /)
{
$_ =~ s/^Command Line\: //;
$cmdLine = $_;
}
$jobCount{$jobName}++;
I can t understand what a lot of it is doing such as uc in $jobName = uc($jobName);
and the split and s/\_DEP$/i/;
Is there any good websites that explain these- such as
elsif ($_ =~ /^Command Line\: /)
$freq =~ s/^\s+//;
I understand it is <the line read> <equal and matches?> <something about commandline.. but not sure exactly>
I want to know what all the possible things inside the / / expression. THANKS!!!
No comments:
Post a Comment