Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread mohd sharif
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

Re: Any Good SCM tool to manage Perl Code locally

2010-03-15 Thread mohd sharif
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

Re: pstree

2006-05-25 Thread mohd sharif
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

pstree

2006-05-25 Thread mohd sharif
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

Re: Replace only once.

2005-12-05 Thread mohd 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