<?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: Help needed!!! Perl went for nuts in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732765#M101063</link>
    <description>Case closed.&lt;BR /&gt;&lt;BR /&gt;It seems that during of reboot /bin (symlink to /usr/bin) was removed (fsck?)&lt;BR /&gt;&lt;BR /&gt;After recreating symlink all orks fine !!!&lt;BR /&gt;&lt;BR /&gt;Thank to all.</description>
    <pubDate>Thu, 16 Feb 2006 05:20:29 GMT</pubDate>
    <dc:creator>Igor I. Shulz</dc:creator>
    <dc:date>2006-02-16T05:20:29Z</dc:date>
    <item>
      <title>Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732752#M101050</link>
      <description>I have a server HPUX 11.11 which keeps many perl scripts running (perl 5.8). This night I had to reboot it and after rebooting I found that many of the scripts don't work. It strange - it seems that fork from perl script is broken. This is test fragments:&lt;BR /&gt;&lt;BR /&gt;This is simple prog:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl -w&lt;BR /&gt;system('/usr/bin/ls aaa');&lt;BR /&gt;&lt;BR /&gt;It works fine and $? = 0&lt;BR /&gt;&lt;BR /&gt;But this prog:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl -w&lt;BR /&gt;system('/usr/bin/ls aaa &amp;gt;bbb');&lt;BR /&gt;&lt;BR /&gt;doesn't work, and $?=65280, $!='No such file or directory'&lt;BR /&gt;&lt;BR /&gt;'/usr/bin/ls aaa &amp;gt;bbb' started manually works fine.&lt;BR /&gt;&lt;BR /&gt;What happens?&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 03:27:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732752#M101050</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T03:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732753#M101051</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;can you put the script under perl debgger and see what happens there ? Something like, &lt;BR /&gt;&lt;BR /&gt;#perl -d tmp.pl&lt;BR /&gt;&lt;BR /&gt;Loading DB routines from perl5db.pl version 1.19&lt;BR /&gt;Editor support available.&lt;BR /&gt;&lt;BR /&gt;Enter h or `h h' for help, or `man perldebug' for more help.&lt;BR /&gt;&lt;BR /&gt;main::(tmp.pl:2):       system('/usr/bin/ls aaa &amp;gt;bbb');&lt;BR /&gt;  DB&amp;lt;1&amp;gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 16 Feb 2006 03:34:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732753#M101051</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-16T03:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732754#M101052</link>
      <description>:-((&lt;BR /&gt;&lt;BR /&gt;# perl -d a.pl&lt;BR /&gt;&lt;BR /&gt;Loading DB routines from perl5db.pl version 1.19&lt;BR /&gt;Editor support available.&lt;BR /&gt;&lt;BR /&gt;Enter h or `h h' for help, or `man perldebug' for more help.&lt;BR /&gt;&lt;BR /&gt;main::(a.pl:2): system('/usr/bin/ls aaa &amp;gt;/tty');&lt;BR /&gt;  DB&amp;lt;1&amp;gt; n&lt;BR /&gt;main::(a.pl:3): print $!,"\n", $?, "\n";&lt;BR /&gt;  DB&amp;lt;1&amp;gt; p $?&lt;BR /&gt;65280&lt;BR /&gt;  DB&amp;lt;2&amp;gt; p $!&lt;BR /&gt;No such file or directory&lt;BR /&gt;  DB&amp;lt;3&amp;gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 03:36:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732754#M101052</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T03:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732755#M101053</link>
      <description>Sorry:&lt;BR /&gt;&lt;BR /&gt;# perl -d a.pl&lt;BR /&gt;&lt;BR /&gt;Loading DB routines from perl5db.pl version 1.19&lt;BR /&gt;Editor support available.&lt;BR /&gt;&lt;BR /&gt;Enter h or `h h' for help, or `man perldebug' for more help.&lt;BR /&gt;&lt;BR /&gt;main::(a.pl:2): system('/usr/bin/ls aaa &amp;gt;bbb');&lt;BR /&gt;  DB&amp;lt;1&amp;gt; n&lt;BR /&gt;main::(a.pl:3): print $!,"\n", $?, "\n";&lt;BR /&gt;  DB&amp;lt;1&amp;gt; p $?&lt;BR /&gt;65280&lt;BR /&gt;  DB&amp;lt;2&amp;gt; p $!&lt;BR /&gt;No such file or directory&lt;BR /&gt;  DB&amp;lt;3&amp;gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 03:38:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732755#M101053</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T03:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732756#M101054</link>
      <description>what is the pwd in that script? is it allowed to write/create bbb?&lt;BR /&gt;&lt;BR /&gt;what happens when you open bbb yourself?&lt;BR /&gt;&lt;BR /&gt;open BBB, "&amp;gt; bbb" or die "Cannot write to bbb: $!\n";&lt;BR /&gt;close BBB;&lt;BR /&gt;system ("ls aaa &amp;gt; bbb") or die "ls failed: $!";&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 16 Feb 2006 03:59:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732756#M101054</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-02-16T03:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732757#M101055</link>
      <description>open BBB works fine&lt;BR /&gt;&lt;BR /&gt;system - no. File bbb is empty after system ("ls aaa &amp;gt; bbb") or die "ls failed: $!";&lt;BR /&gt;&lt;BR /&gt;die doesn't executed because system returns 65280.&lt;BR /&gt;&lt;BR /&gt;# perl -d a.pl&lt;BR /&gt;&lt;BR /&gt;Loading DB routines from perl5db.pl version 1.19&lt;BR /&gt;Editor support available.&lt;BR /&gt;&lt;BR /&gt;Enter h or `h h' for help, or `man perldebug' for more help.&lt;BR /&gt;&lt;BR /&gt;main::(a.pl:10):        system ("ls aaa &amp;gt; bbb") or die "ls failed: $!";&lt;BR /&gt;  DB&amp;lt;1&amp;gt; n&lt;BR /&gt;main::(a.pl:12):        0;&lt;BR /&gt;  DB&amp;lt;1&amp;gt; p $?&lt;BR /&gt;65280&lt;BR /&gt;  DB&amp;lt;2&amp;gt; p $!&lt;BR /&gt;No such file or directory&lt;BR /&gt;  DB&amp;lt;3&amp;gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 04:10:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732757#M101055</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T04:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732758#M101056</link>
      <description>system - no. File bbb not exists after system ("ls aaa &amp;gt; bbb") or die "ls failed: $!";&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 04:11:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732758#M101056</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T04:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732759#M101057</link>
      <description>Try as,&lt;BR /&gt;&lt;BR /&gt;# cat test.pl&lt;BR /&gt;#!/usr/bin/perl -w &lt;BR /&gt;`/usr/bin/ls muthu &amp;gt; /err.log`;&lt;BR /&gt;&lt;BR /&gt;# perl -d test.pl&lt;BR /&gt;DB&amp;lt;1&amp;gt; n&lt;BR /&gt;&lt;BR /&gt;what you are getting now?&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 16 Feb 2006 04:24:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732759#M101057</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T04:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732760#M101058</link>
      <description># perl -d b.pl&lt;BR /&gt;&lt;BR /&gt;Loading DB routines from perl5db.pl version 1.19&lt;BR /&gt;Editor support available.&lt;BR /&gt;&lt;BR /&gt;Enter h or `h h' for help, or `man perldebug' for more help.&lt;BR /&gt;&lt;BR /&gt;main::(b.pl:2): `/usr/bin/ls muthu &amp;gt; /err.log`;&lt;BR /&gt;  DB&amp;lt;1&amp;gt; n&lt;BR /&gt;main::(b.pl:3): 1;&lt;BR /&gt;  DB&amp;lt;1&amp;gt; p $?&lt;BR /&gt;256&lt;BR /&gt;  DB&amp;lt;2&amp;gt; p $!&lt;BR /&gt;&lt;BR /&gt;  DB&amp;lt;3&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/err.log - is not created</description>
      <pubDate>Thu, 16 Feb 2006 04:29:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732760#M101058</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T04:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732761#M101059</link>
      <description>Try as,&lt;BR /&gt;&lt;BR /&gt;# cat test.pl&lt;BR /&gt;#!/usr/bin/perl -w&lt;BR /&gt;`/usr/bin/ls muthu &amp;gt; /err.log`;&lt;BR /&gt;&lt;BR /&gt;# perl -W test.pl&lt;BR /&gt;&lt;BR /&gt;what you are getting?&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 16 Feb 2006 04:34:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732761#M101059</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T04:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732762#M101060</link>
      <description># perl -W test.pl&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;err.log is not created</description>
      <pubDate>Thu, 16 Feb 2006 04:41:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732762#M101060</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T04:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732763#M101061</link>
      <description>Just a thought, Reinstalling perl may help...&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 16 Feb 2006 04:42:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732763#M101061</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-16T04:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732764#M101062</link>
      <description>Try like,&lt;BR /&gt;&lt;BR /&gt;# cat &amp;gt; test.pl&lt;BR /&gt;#!/usr/bin/perl -w&lt;BR /&gt;`/usr/bin/ls muthu &amp;gt; /err.log 2&amp;gt;&amp;amp;1`;&lt;BR /&gt;&lt;BR /&gt;# perl test.pl&lt;BR /&gt;# cat /err.log&lt;BR /&gt;&lt;BR /&gt;what you are getting. I feel it is a problem with STDERR (2 File descriptor) setup.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;Muthu</description>
      <pubDate>Thu, 16 Feb 2006 04:45:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732764#M101062</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2006-02-16T04:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732765#M101063</link>
      <description>Case closed.&lt;BR /&gt;&lt;BR /&gt;It seems that during of reboot /bin (symlink to /usr/bin) was removed (fsck?)&lt;BR /&gt;&lt;BR /&gt;After recreating symlink all orks fine !!!&lt;BR /&gt;&lt;BR /&gt;Thank to all.</description>
      <pubDate>Thu, 16 Feb 2006 05:20:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732765#M101063</guid>
      <dc:creator>Igor I. Shulz</dc:creator>
      <dc:date>2006-02-16T05:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help needed!!! Perl went for nuts</title>
      <link>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732766#M101064</link>
      <description>&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Feb 2006 05:22:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/help-needed-perl-went-for-nuts/m-p/3732766#M101064</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2006-02-16T05:22:21Z</dc:date>
    </item>
  </channel>
</rss>

