Aug 8, 2002 #1 sirrom Technical User Jul 11, 2001 80 GB How would I know if I had perl installed on my Solaris E450
Aug 8, 2002 #2 Apricot IS-IT--Management May 16, 2002 133 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 Apr 9, 2002 115 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