perl upgrade verify


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat perl upgrade verify
# 1  
Old 08-19-2008
perl upgrade verify

Hi All,

How do I verify if I updated perl properly?

I check with perl -v and it seems to me it's the same.

Please help. Thanks.
# 2  
Old 08-19-2008
what distro are you using? what version are you upgrading from?
# 3  
Old 08-20-2008
"-V" switch prints more debug info.
# 4  
Old 08-20-2008
Here's what I did, I "perl -V > a" on the production server and on a previous version I do the same and do a "diff a b":

3,4c3,4
< osname=linux, osvers=2.6.9-67.0.7.elsmp, archname=x86_64-linux-thread-multi
< uname='linux ls20-bc1-14.build.redhat.com 2.6.9-67.0.7.elsmp #1 smp wed feb 27 04:47:23 est 2008 x86_64 x86_64 x86_64 gnulinux '
---
> osname=linux, osvers=2.6.9-55.0.9.elsmp, archname=x86_64-linux-thread-multi
> uname='linux hs20-bc1-6.build.redhat.com 2.6.9-55.0.9.elsmp #1 smp tue sep 25 02:16:15 edt 2007 x86_64 x86_64 x86_64 gnulinux '
15c15
< ccversion='', gccversion='3.4.6 20060404 (Red Hat 3.4.6-9)', gccosandvers=''
---
> ccversion='', gccversion='3.4.6 20060404 (Red Hat 3.4.6-8)', gccosandvers=''
35c35
< Compiled at Jun 5 2008 07:33:01
---
> Compiled at Oct 22 2007 16:12:57

I could say the perl on a is the latest (Jun 5) which is my production server and the b is my test server (Oct 22).
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Red Hat

Verify multipathing

I have a couple of questions regarding multipath. If I do vgdisplay vg01, I see it is using 1 PV: /dev/dm-13 If I type multipath -ll I see dm-9, dm-10, dm-11, dm-12, but do not see dm-13. Is my vg01 multipathed? How can I actually know for sure? Secondly, let's say this time vg01 says... (1 Reply)
Discussion started by: keelba
1 Replies

2. Shell Programming and Scripting

Perl script to verify that a value is present in an array (list)

I have 2 files , i need compare both files field by field, and in the fourth field some value will be interchaged and some value will be **. ex: file1 john|0.0|4|**:25;JP:50;UY:25 file2 john|0.0|4|JP:50;**:25;UY:25 (4 Replies)
Discussion started by: veeruasu
4 Replies

3. Shell Programming and Scripting

Upgrade Perl version on Solaris machine

Hi, Can you please assist in upgrading perl from 5.8.x to 5.10? Right now i am running the below verison on my Solaris SPARC machine. Thanks in advance (8 Replies)
Discussion started by: prash358
8 Replies

4. Red Hat

Upgrade perl from 5.005_03 to 5.8 in redhat 5.3

i have a machine with running redhat 5.3. perl -v shows me perl version 5.005_03. i have to upgrade it to 5.8. (1 Reply)
Discussion started by: rehantayyab82
1 Replies

5. Shell Programming and Scripting

Perl verify if numbers in a column of a file are in sequence

I am just a newbie to perl scripting. I need help with listing of hexadecimal numbers in a column as follows. INPUT FIle: 08AF ship steel 08B0 ship steel 08B1 ship steel 08B2 flight docs 08B3 flight docs 08B4 flight docs 08B5 flight docs 08B6 flight decl ... (3 Replies)
Discussion started by: dynamax
3 Replies

6. AIX

verify command

Guy's I have script doing many steps as the below ... ############# ## step1# mount all Files system mount all ## step2# Start the application /app/appsh ############# but some time mount points will not be mounted completely so that will give an error if the next step started... (1 Reply)
Discussion started by: Mr.AIX
1 Replies

7. Shell Programming and Scripting

Verify the input

I run the script with one parameter : myscript abc002 But I need my script to check the parameter in txt array first: txt="abc001 abc002 abc004" What's the best way to do it? I am using ksh. #! /usr/bin/ksh txt="abc001 abc002 abc004" if ; then echo " Your input is wrong,... (9 Replies)
Discussion started by: newoz
9 Replies

8. Shell Programming and Scripting

Verify Parameters

I have a unix script written in the korn shell. At the top of the script I call a script that exports the values of the variables I use in my script. I know that when you execute the script using ksh -x it shows you the script running. I was wondering if there was a way you could run the script... (2 Replies)
Discussion started by: lesstjm
2 Replies
Login or Register to Ask a Question