On 3/16/10, mohd sharif wrote:
> You can use "git"
>
> -Sharif
>
> On 3/14/10, Parag Kalra wrote:
>> Hi All,
>>
>> Although it is not related to Perl directly and might be little strange
>> question but still thought of consulting Perl gurus.
&g
You can use "git"
-Sharif
On 3/14/10, Parag Kalra wrote:
> Hi All,
>
> Although it is not related to Perl directly and might be little strange
> question but still thought of consulting Perl gurus.
>
> Here is the thing - I mainly code in Perl and Bash and I don't use any SCM
> tool. And the rea
On 5/25/06, mohd sharif <[EMAIL PROTECTED]> wrote:
Hi,
I am writing a perl cgi program to get the status on page of all process
running on particluar m/c.
And then perform some action on those process but these process should get
displayed in pstree format in expand mode.
Has anybody do
Hi,
I am writing a perl cgi program to get the status on page of all process
running on particluar m/c.
And then perform some action on those process but these process should get
displayed in pstree format in expand mode.
Has anybody done the same effort?
-Sharif
But it will fail if we have spaces before $modtager = " 45247";
You should probably write like this.
#!/usr/bin/perl
$modtager = "45247";
$modtager =~ s/^\s+//g; # deletes all leading spaces in variable
$modtager =~ s/^(45)//; # guarantees match of 45
-Sharif
On 12/2/05, Alexandre Checin