Aug 8, 2002 #1 sirrom Technical User Joined Jul 11, 2001 Messages 80 Location GB How would I know if I had perl installed on my Solaris E450
Aug 8, 2002 #2 Apricot IS-IT--Management Joined May 16, 2002 Messages 133 Location CH hi # cd /opt # ls is there a perl package/directory : **perl** or # find / -type f | xargs grep *perl* or # find / -name f | xargs grep *perl* Upvote 0 Downvote
hi # cd /opt # ls is there a perl package/directory : **perl** or # find / -type f | xargs grep *perl* or # find / -name f | xargs grep *perl*
Aug 8, 2002 #3 mrjazz MIS Joined Apr 9, 2002 Messages 115 Location DE Hi sirrom, check if the Perl package is installed with: $ pkginfo | grep -i perl If you are running Solaris 8 or 9 then you don't need to execute that command because Perl is part of the distribution and is in /usr/bin. mrjazz Upvote 0 Downvote
Hi sirrom, check if the Perl package is installed with: $ pkginfo | grep -i perl If you are running Solaris 8 or 9 then you don't need to execute that command because Perl is part of the distribution and is in /usr/bin. mrjazz