<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Script Help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873597#M860263</link>
    <description>baan03:/home/fave_test#env&lt;BR /&gt;_=/usr/bin/env&lt;BR /&gt;MANPATH=/usr/share/man/%L:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/mx/share/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/opt/resmon/share/man:/usr/dt/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/perf/man/%L:/opt/perf/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/graphics/common/man://opt/perl/man:/opt/prm/man/%L:/opt/prm/man:/opt/scr/share/man:/opt/wlm/share/man/%L:/opt/wlm/share/man:/opt/omni/lib/man:/opt/hpsmc/shc/man&lt;BR /&gt;PATH=/usr/sbin:/oracle/9.2.0/bin:/baan/bse/bin:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/mx/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/resmon/bin:/opt/pd/bin:/opt/perf/bin:/opt/ignite/bin:/opt/netscape:/usr/bin/X11:/usr/contrib/bin/X11:/opt/graphics/common/bin://opt/perl/bin:/opt/prm/bin:/opt/scr/bin:/usr/sbin/diag/contrib:/opt/wlm/bin:/opt/omni/bin:/sbin:/home/root&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;how do i make /opt/perl64/bin is my start path?&lt;BR /&gt;and what do i change in your script?&lt;BR /&gt;baan03:/home/fave_test#more find_dup.pl&lt;BR /&gt;#!/opt/perl64/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;use Digest::MD5  qw( md5_hex );&lt;BR /&gt;use Digest::SHA1 qw( sha1_hex );&lt;BR /&gt;use Cwd          qw( getcwd );&lt;BR /&gt;use File::Find;&lt;BR /&gt;&lt;BR /&gt;my @dir = @ARGV &amp;amp;&amp;amp; -d $ARGV[0] ? @ARGV : getcwd;&lt;BR /&gt;my %arr;&lt;BR /&gt;find (sub {&lt;BR /&gt;    -f or return;&lt;BR /&gt;    local $/;&lt;BR /&gt;    open my $p, "&amp;lt; $_" or die "$_: $!\n";&lt;BR /&gt;    my $f = &amp;lt;$p&amp;gt;;&lt;BR /&gt;    my $sum = md5_hex ($f) . sha1_hex ($f);&lt;BR /&gt;    if (exists $arr{$sum}) {&lt;BR /&gt;        print "File $File::Find::name is the same as file $arr{$sum}\n";&lt;BR /&gt;        # unlink $_;&lt;BR /&gt;        return;&lt;BR /&gt;        }&lt;BR /&gt;    $arr{$sum} = $File::Find::name;&lt;BR /&gt;    }, @dir);</description>
    <pubDate>Fri, 03 Dec 2004 06:21:11 GMT</pubDate>
    <dc:creator>Cem Tugrul</dc:creator>
    <dc:date>2004-12-03T06:21:11Z</dc:date>
    <item>
      <title>Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873574#M860240</link>
      <description>Hi forum,&lt;BR /&gt;&lt;BR /&gt;Let's say i have a directory which includes thousand of files and i want to&lt;BR /&gt;compare each file's contents with the others bye one one and try to find out repeated &lt;BR /&gt;files(contents-records)&lt;BR /&gt;&lt;BR /&gt;Help....</description>
      <pubDate>Thu, 02 Dec 2004 10:28:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873574#M860240</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-02T10:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873575#M860241</link>
      <description>The command is probably diff&lt;BR /&gt;&lt;BR /&gt;diff file1 file2&lt;BR /&gt;&lt;BR /&gt;You can build a script to read file lists and create diff output.&lt;BR /&gt;&lt;BR /&gt;Do you need help setting up such a looping script?&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 02 Dec 2004 10:32:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873575#M860241</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-12-02T10:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873576#M860242</link>
      <description>I might do the following-&lt;BR /&gt; &lt;BR /&gt;cksum * | sort&lt;BR /&gt; &lt;BR /&gt;This would run checksum on all the files then sort by checksum value. Those files that were the same would sort together with the same checksum value.&lt;BR /&gt; &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Thu, 02 Dec 2004 10:33:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873576#M860242</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-12-02T10:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873577#M860243</link>
      <description>Do you mean you want to suppress duplicate files or duplicate lines across different files.&lt;BR /&gt;&lt;BR /&gt;Case 1 correponds to what SEP says (diff solution).&lt;BR /&gt;&lt;BR /&gt;In case 2, you could cat all files through sort and uniq commands and get one file with unrepeated records.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Dec 2004 10:35:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873577#M860243</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-02T10:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873578#M860244</link>
      <description>you need loop:&lt;BR /&gt;&lt;BR /&gt;for i in `ls`&lt;BR /&gt;&lt;BR /&gt;do &lt;BR /&gt;for n in `ls`&lt;BR /&gt;do &lt;BR /&gt;diff  $i $n &amp;gt;&amp;gt; /tmp/whatever &lt;BR /&gt;done &lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Dec 2004 10:36:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873578#M860244</guid>
      <dc:creator>Ivajlo Yanakiev</dc:creator>
      <dc:date>2004-12-02T10:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873579#M860245</link>
      <description>Hi forum,&lt;BR /&gt;Thank's all answers...&lt;BR /&gt;Yes,i need help setting up such a looping script urgently...&lt;BR /&gt;Please help...&lt;BR /&gt;&lt;BR /&gt;and Fred i need the contents(records) of all&lt;BR /&gt;files to compare and try to find out Ohh&lt;BR /&gt;these are the same files...&lt;BR /&gt;But my files names are different so maybe&lt;BR /&gt;best approach is files size...</description>
      <pubDate>Thu, 02 Dec 2004 10:54:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873579#M860245</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-02T10:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873580#M860246</link>
      <description>If you are looking for files that are the same, what about my "cksum" solution?&lt;BR /&gt; &lt;BR /&gt;It would be better then checking file size.&lt;BR /&gt; &lt;BR /&gt;The "diff" solution others have given are to show how the files are different.&lt;BR /&gt; &lt;BR /&gt;Maybe a little more explaination on what you have and why you are looking for "sameness".&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Thu, 02 Dec 2004 11:03:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873580#M860246</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-12-02T11:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873581#M860247</link>
      <description>Would my answer in this thread be the start to your solution?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=749983" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=749983&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can extend it to report duplicates like:&lt;BR /&gt;&lt;BR /&gt;use Digest::MD5 qw( md5_hex );&lt;BR /&gt;use Digest::SHA1 qw( sha1_hex );&lt;BR /&gt;use File::Find;&lt;BR /&gt;my %arr;&lt;BR /&gt;find (sub {&lt;BR /&gt;-f or return;&lt;BR /&gt;local $/;&lt;BR /&gt;open my $p, "&amp;lt; $_" or die "$_: $!\n";&lt;BR /&gt;my $f = &amp;lt;$p&amp;gt;;&lt;BR /&gt;my $sum = md5_hex ($f) . sha1_hex ($f);&lt;BR /&gt;if (exists $arr{$sum}) {&lt;BR /&gt;print "File $File::Find::name is the same as file $arr{$sum}\n";&lt;BR /&gt;# unlink $_;&lt;BR /&gt;return;&lt;BR /&gt;}&lt;BR /&gt;$arr{$sum} = $File::Find::name;&lt;BR /&gt;}, ".");&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 02 Dec 2004 11:13:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873581#M860247</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-02T11:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873582#M860248</link>
      <description>I think Rodney's solution is very good. Using diff between every combination of two files will make you parse each file a huge number of time, whereas cksum once on each file and work on a ckecksum file would only arse once each file.&lt;BR /&gt;It should look like this :&lt;BR /&gt;  cksum * &amp;gt; cksum.tmp&lt;BR /&gt;  sort cksum.tmp &amp;gt; cksum.out&lt;BR /&gt;Then you can look at cksum.out. If two following lines have the same checksum it is the same file.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Dec 2004 11:16:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873582#M860248</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2004-12-02T11:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873583#M860249</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Let's say i have a directory as below;&lt;BR /&gt;&lt;BR /&gt;-rw-------   1 cemt       bsp              6 Dec  3 08:17 a.txt&lt;BR /&gt;-rw-------   1 cemt       bsp              6 Dec  3 08:17 b.txt&lt;BR /&gt;-rw-------   1 cemt       bsp              6 Dec  3 08:18 c.txt&lt;BR /&gt;-rw-------   1 cemt       bsp              9 Dec  3 08:22 d.txt&lt;BR /&gt;-rw-------   1 cemt       bsp              6 Dec  3 08:22 e.txt&lt;BR /&gt;&lt;BR /&gt;Now i try to find out which files are the same???if you are a magician you can easily&lt;BR /&gt;say the file "a.txt" and "c.txt" are the same file!!!&lt;BR /&gt;Why;&lt;BR /&gt;Before cat these 5 files we can easily ignore the file "d.txt" because it's size is different than the others so;&lt;BR /&gt;Let's cat each file;&lt;BR /&gt;&lt;BR /&gt;$ cat a.txt&lt;BR /&gt;11111&lt;BR /&gt;$ cat b.txt&lt;BR /&gt;22222&lt;BR /&gt;$ cat c.txt&lt;BR /&gt;11111&lt;BR /&gt;$ cat e.txt&lt;BR /&gt;33333&lt;BR /&gt;&lt;BR /&gt;And we decided "a.txt" and "c.txt" are the same(repeated file)....is it clear???&lt;BR /&gt;&lt;BR /&gt;Now i have more than 2000 files and try to find out repeated files in a directory?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 01:30:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873583#M860249</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T01:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873584#M860250</link>
      <description>Hi Procura,&lt;BR /&gt;also thank's for yourlink but i do not have any experience on perl.&lt;BR /&gt;How can i solve this problem with basic ux&lt;BR /&gt;scripting?(if possible)&lt;BR /&gt;Greetings,</description>
      <pubDate>Fri, 03 Dec 2004 02:14:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873584#M860250</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T02:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873585#M860251</link>
      <description>Did you try to put that snippet of perl in a file and execute it?&lt;BR /&gt;&lt;BR /&gt;I've attached the (little modified) script, and show you an example:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;lt09:/tmp 103 # find_dups.pl&lt;BR /&gt;File /tmp/mcop-merijn/Arts_PlayObjectFactory is the same as file /tmp/mcop-merijn/Arts_SoundServerV2&lt;BR /&gt;File /tmp/mcop-merijn/Arts_SoundServer is the same as file /tmp/mcop-merijn/Arts_SoundServerV2&lt;BR /&gt;File /tmp/mcop-merijn/Arts_SimpleSoundServer is the same as file /tmp/mcop-merijn/Arts_SoundServerV2&lt;BR /&gt;File /tmp/pics/zelfmoordactie.jpg is the same as file /tmp/blah/zelfmoordactie.jpg&lt;BR /&gt;File /tmp/pics/xmas.jpg is the same as file /tmp/blah/xmas.jpg&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Fri, 03 Dec 2004 02:43:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873585#M860251</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-03T02:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873586#M860252</link>
      <description>Hi Procura,&lt;BR /&gt;&lt;BR /&gt;i wanted to run it on my dir but faced&lt;BR /&gt;an error as ;&lt;BR /&gt;baan01:/users/rvs/usrdat/fave_org#perl find_dup.pl     &lt;BR /&gt;Can't locate strict.pm in @INC (@INC contains: /opt/perl5/lib/5.00502/PA-RISC1.1 /opt/perl5/lib/5.00502 /opt/perl5/lib/site_perl/5.005/PA-RISC1.1 /opt/perl5/lib/site_perl/5.005 .) at find_dup.pl line 3.&lt;BR /&gt;BEGIN failed--compilation aborted at find_dup.pl line 3.</description>
      <pubDate>Fri, 03 Dec 2004 03:02:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873586#M860252</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T03:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873587#M860253</link>
      <description>baan01:/#whereis perl&lt;BR /&gt;perl: /usr/contrib/bin/perl /opt/perl/bin/perl /opt/baf/bin/perl /opt/perl/man/man1/perl.1&lt;BR /&gt;&lt;BR /&gt;do i have change perl path in your script?&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 03:05:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873587#M860253</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T03:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873588#M860254</link>
      <description>strict.pm SHOULD be there. There might be a small problem in the installation. Could you check&lt;BR /&gt;&lt;BR /&gt;# which perl&lt;BR /&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;BR /&gt;# perl -v&lt;BR /&gt;&lt;BR /&gt;and make sure /usr/contrib/bin is NOT somewhere in the front of your $PATH. /usr/contrib/bin usually contains old perls from HP.&lt;BR /&gt;&lt;BR /&gt;but with the perl you have, it is very unlikely that you have the second Digest module installed.&lt;BR /&gt;&lt;BR /&gt;Would you consider installing perl-5.8.5 from my site? It's more complete, includes a lot of modules (including the three I use in the example script) and is pretty recent.&lt;BR /&gt;&lt;BR /&gt;I don't expect you to learn perl in a week or so, but once you uncover it's power, you will learn to love it fast!&lt;BR /&gt;&lt;BR /&gt;Assuming you have a HP-UX 11.11 system, and no need for 64bit database connections just follow the instructions on &lt;A href="http://mirrors.develooper.com/hpux/#Perl" target="_blank"&gt;http://mirrors.develooper.com/hpux/#Perl&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;My HP ITRC site pages can be found at (please use LA as primary choice):&lt;BR /&gt;&lt;BR /&gt;USA Los Angeles &lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt;&lt;BR /&gt;SGP Singapore   &lt;A href="https://www.beepz.com/personal/merijn/" target="_blank"&gt;https://www.beepz.com/personal/merijn/&lt;/A&gt;&lt;BR /&gt;USA Chicago     &lt;A href="http://ww.hpux.ws/" target="_blank"&gt;http://ww.hpux.ws/&lt;/A&gt;&lt;BR /&gt;NL  Hoofddorp   &lt;A href="http://www.cmve.net/~merijn/" target="_blank"&gt;http://www.cmve.net/~merijn/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, have FUN! H.Merijn</description>
      <pubDate>Fri, 03 Dec 2004 03:11:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873588#M860254</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-03T03:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873589#M860255</link>
      <description>Please move /usr/contrib/bin to the END of your $PATH. It'll save you a lot of annoyancies in the future.&lt;BR /&gt;&lt;BR /&gt;It's old cruft!&lt;BR /&gt;&lt;BR /&gt;Check /etc/PATH for it too&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Fri, 03 Dec 2004 03:31:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873589#M860255</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-03T03:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873590#M860256</link>
      <description>$ which perl&lt;BR /&gt;/usr/contrib/bin/perl&lt;BR /&gt;$ perl -v&lt;BR /&gt;&lt;BR /&gt;This is perl, version 5.005_02 built for PA-RISC1.1&lt;BR /&gt;&lt;BR /&gt;Copyright 1987-1998, Larry Wall&lt;BR /&gt;&lt;BR /&gt;Perl may be copied only under the terms of either the Artistic License or the&lt;BR /&gt;GNU General Public License, which may be found in the Perl 5.0 source kit.&lt;BR /&gt;&lt;BR /&gt;Complete documentation for Perl, including FAQ lists, should be found on&lt;BR /&gt;this system using `man perl' or `perldoc perl'.  If you have access to the&lt;BR /&gt;Internet, point your browser at &lt;A href="http://www.perl.com/," target="_blank"&gt;http://www.perl.com/,&lt;/A&gt; the Perl Home Page.&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 03:59:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873590#M860256</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T03:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873591#M860257</link>
      <description>hi Procura,&lt;BR /&gt;i have downloaded perl&lt;BR /&gt;perl-5.8.5-gcc-3.4.1-11.11-elf64&lt;BR /&gt;and my srv specs from (print_manifest);&lt;BR /&gt;Model:              9000/800/L1000-36&lt;BR /&gt;    Main Memory:        2048 MB&lt;BR /&gt;    Processors:         2&lt;BR /&gt;    OS mode:            64 bit&lt;BR /&gt;Your system was installed with HP-UX version B.11.11.&lt;BR /&gt;How do i install perl 5.8.5?&lt;BR /&gt;Greetings,&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Dec 2004 04:36:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873591#M860257</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T04:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873592#M860258</link>
      <description>Note that that is a 64bit perl&lt;BR /&gt;&lt;BR /&gt;# cd /opt&lt;BR /&gt;# bzip2 -d &amp;lt; /tmp/perl-5.8.5-gcc-3.4.1-11.11-elf64.tbz | tar xf -&lt;BR /&gt;# export PATH=/opt/perl64/bin:$PATH&lt;BR /&gt;# perl -v&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Fri, 03 Dec 2004 05:04:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873592#M860258</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2004-12-03T05:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Script Help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873593#M860259</link>
      <description>oppsss,&lt;BR /&gt;this time i do not have bzip2:-(</description>
      <pubDate>Fri, 03 Dec 2004 05:28:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-help/m-p/4873593#M860259</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2004-12-03T05:28:55Z</dc:date>
    </item>
  </channel>
</rss>

