<?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: Ksh parameter not set error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081915#M142864</link>
    <description>Hi setubabu s,&lt;BR /&gt;&lt;BR /&gt;is there any point in reply to thread which opend 7 year older ...:(&lt;BR /&gt;&lt;BR /&gt;Sep 30, 2003 12:59:41 GMT      N/A: Question Author</description>
    <pubDate>Thu, 11 Mar 2010 05:55:04 GMT</pubDate>
    <dc:creator>Johnson Punniyalingam</dc:creator>
    <dc:date>2010-03-11T05:55:04Z</dc:date>
    <item>
      <title>Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081909#M142858</link>
      <description>I am trying to extract some file in the following format.&lt;BR /&gt;&lt;BR /&gt;month date time file&lt;BR /&gt;&lt;BR /&gt;I am using the following command:&lt;BR /&gt;&lt;BR /&gt;ls -l|grep file|print{$6,$7,$8,"/t"$9}&lt;BR /&gt;&lt;BR /&gt;But I am getting the following error:&lt;BR /&gt;ksh:parameter not set&lt;BR /&gt;&lt;BR /&gt;Can anyone please tell me how to get rid of this problem.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;-Anand&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Sep 2003 11:44:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081909#M142858</guid>
      <dc:creator>Anand_30</dc:creator>
      <dc:date>2003-09-30T11:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081910#M142859</link>
      <description>Post the script.&lt;BR /&gt; &lt;BR /&gt;It looks like you don't have the shell defined properly.&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;For example.&lt;BR /&gt; &lt;BR /&gt;SEP</description>
      <pubDate>Tue, 30 Sep 2003 11:48:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081910#M142859</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-09-30T11:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081911#M142860</link>
      <description>I think it thinks "print" is parameter.&lt;BR /&gt; &lt;BR /&gt;Try &lt;BR /&gt; &lt;BR /&gt;ls -l | grep file | awk '{ print $6,$7,$8,"\t",$9 }'&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Tue, 30 Sep 2003 11:53:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081911#M142860</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-09-30T11:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081912#M142861</link>
      <description>try&lt;BR /&gt;ls -l|grep file|awk '{printf("%s %s %s\t%s\n",$6,$7,$8,$9);}'&lt;BR /&gt;&lt;BR /&gt;I suppose "file" has different value depending on your query&lt;BR /&gt;&lt;BR /&gt;Rgds,&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
      <pubDate>Tue, 30 Sep 2003 11:54:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081912#M142861</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2003-09-30T11:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081913#M142862</link>
      <description>Thanks&lt;BR /&gt;&lt;BR /&gt;Both the commands worked fine.&lt;BR /&gt;&lt;BR /&gt;-Anand.</description>
      <pubDate>Tue, 30 Sep 2003 11:59:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081913#M142862</guid>
      <dc:creator>Anand_30</dc:creator>
      <dc:date>2003-09-30T11:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081914#M142863</link>
      <description>HI Anand,&lt;BR /&gt;&lt;BR /&gt;use the awk command.&lt;BR /&gt;&lt;BR /&gt;ls -l |grep file |awk '{print $6,$7}'</description>
      <pubDate>Thu, 11 Mar 2010 05:37:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081914#M142863</guid>
      <dc:creator>setubabu s</dc:creator>
      <dc:date>2010-03-11T05:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081915#M142864</link>
      <description>Hi setubabu s,&lt;BR /&gt;&lt;BR /&gt;is there any point in reply to thread which opend 7 year older ...:(&lt;BR /&gt;&lt;BR /&gt;Sep 30, 2003 12:59:41 GMT      N/A: Question Author</description>
      <pubDate>Thu, 11 Mar 2010 05:55:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081915#M142864</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2010-03-11T05:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ksh parameter not set error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081916#M142865</link>
      <description>&amp;gt;is there any point in reply to thread which opend 7 year older &lt;BR /&gt;&lt;BR /&gt;Maybe there is a time loop out there...&lt;BR /&gt;&lt;BR /&gt;See Stargate SG1/Atlantis episodes. (&lt;A href="http://stargate.mgm.com/)" target="_blank"&gt;http://stargate.mgm.com/)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Horia.</description>
      <pubDate>Thu, 11 Mar 2010 06:28:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ksh-parameter-not-set-error/m-p/3081916#M142865</guid>
      <dc:creator>Horia Chirculescu</dc:creator>
      <dc:date>2010-03-11T06:28:24Z</dc:date>
    </item>
  </channel>
</rss>

