<?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: Shell Redirect error in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149206#M454366</link>
    <description>&amp;gt;tmboot -y &amp;gt; &amp;amp; filename&lt;BR /&gt;&lt;BR /&gt;You shouldn't have a space: &amp;gt;&amp;amp;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;it says&lt;BR /&gt;ksh: syntax error: `&amp;amp;' unexpected&lt;BR /&gt;&lt;BR /&gt;Now you are using a real shell.  Please put the syntax back and remove all occurrences of the scummy C shell.&lt;BR /&gt;&lt;BR /&gt;If you have a script the first line will indicate the interpreter:&lt;BR /&gt;#!/usr/bin/ksh</description>
    <pubDate>Thu, 08 Jan 2009 19:25:23 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2009-01-08T19:25:23Z</dc:date>
    <item>
      <title>Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149186#M454346</link>
      <description>Hi everyone, While I was trying to do &lt;BR /&gt;&lt;BR /&gt;DATE=`date +"%Y%m%d_%H%M%S"`&lt;BR /&gt;STARTLOG=$TUXSTDDIR/start_$DATE.log&lt;BR /&gt;tmboot -y &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1 &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I got an error i.e. Ambiguous output redirect error. Here the first part is to boot the account so there is nothing wrong with that. I have defined the startlog also but I dint understand why I am having problem here.&lt;BR /&gt;&lt;BR /&gt;I dint get what that error means. I will appreciate any help to make this right.&lt;BR /&gt;&lt;BR /&gt;thanks alot&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jan 2009 19:52:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149186#M454346</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T19:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149187#M454347</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You're using the evil C-shell.  Use a real shell (Poxix, Korn, or Bash).  Since this is HP-UX, use the Posix shell --- '/usr/bin/sh'.&lt;BR /&gt;&lt;BR /&gt;See this :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/" target="_blank"&gt;http://www.faqs.org/faqs/unix-faq/shell/csh-whynot/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 07 Jan 2009 20:08:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149187#M454347</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-07T20:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149188#M454348</link>
      <description>I think im using korn shell thought I have both ksh and csh. and i did something like that to be exact &lt;BR /&gt; #!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;        DATE=`date +"%Y%m%d_%H%M%S"`&lt;BR /&gt;        STARTLOG=$TUXSTDDIR/start_$DATE.log&lt;BR /&gt;        tmboot -y  &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1 &lt;BR /&gt;&lt;BR /&gt;doesnt that mean im using Korn shell?&lt;BR /&gt; and if lets suppose that is on csh how can I do something like that in csh? even complex way is fine just want to know how I can do it.&lt;BR /&gt;&lt;BR /&gt;thanks</description>
      <pubDate>Wed, 07 Jan 2009 20:21:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149188#M454348</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T20:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149189#M454349</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Hmmm, so you did specify Korn (#!/bin/ksh).&lt;BR /&gt;&lt;BR /&gt;I could reproduce your "ambiguous output redirect" thusly:&lt;BR /&gt;&lt;BR /&gt;# cat ./myredir.csh&lt;BR /&gt;#!/usr/bin/csh&lt;BR /&gt;set STARTLOG=/tmp/something&lt;BR /&gt;lvlnboot -y &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;...but not with:&lt;BR /&gt;&lt;BR /&gt;# cat ./myredir.ksh&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;STARTLOG=/tmp/something&lt;BR /&gt;lvlnboot -y &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jan 2009 20:40:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149189#M454349</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-07T20:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149190#M454350</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;Are you running your script remotely, as with an 'remsh' command?&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 07 Jan 2009 20:44:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149190#M454350</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-07T20:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149191#M454351</link>
      <description>no im not using remsh or running command remotely.</description>
      <pubDate>Wed, 07 Jan 2009 20:52:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149191#M454351</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T20:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149192#M454352</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;If you do:&lt;BR /&gt;&lt;BR /&gt;# su - someuser /myscript&lt;BR /&gt;&lt;BR /&gt;...and &lt;SOMEUSER&gt;'s default shell is the C-shell then regardless of the presence of the Korn shell interpreter line in 'myscript' you will produce the error.&lt;BR /&gt;&lt;BR /&gt;Does this match what you are doing?&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/SOMEUSER&gt;</description>
      <pubDate>Wed, 07 Jan 2009 21:11:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149192#M454352</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-07T21:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149193#M454353</link>
      <description>Please show us how you're invoking the script.  First, issue the command&lt;BR /&gt;&lt;BR /&gt;echo $SHELL&lt;BR /&gt;&lt;BR /&gt;and show us the output.  Next, issue the command you're using to invoke this script&lt;BR /&gt;&lt;BR /&gt;myscript parm1 parm2 ... parmN&lt;BR /&gt;&lt;BR /&gt;and show us the output from that.</description>
      <pubDate>Wed, 07 Jan 2009 21:19:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149193#M454353</guid>
      <dc:creator>Michael Mike Reaser</dc:creator>
      <dc:date>2009-01-07T21:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149194#M454354</link>
      <description>No that dint work. Instead of that I guess it will be helpful for me if there is any way to do similar to that in csh so that I can try that one if it works.&lt;BR /&gt;&lt;BR /&gt;tmboot -y  &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1 &lt;BR /&gt;to me it looks like it should work on korn shell but its not so What im asking is how can we do like that in csh.</description>
      <pubDate>Wed, 07 Jan 2009 21:24:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149194#M454354</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T21:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149195#M454355</link>
      <description>I did the exactly you wanted &lt;BR /&gt;&amp;gt; echo $SHELL&lt;BR /&gt;/usr/bin/ksh&lt;BR /&gt;&amp;gt; set DATE=`date +"%Y%m%d_%H%M%S"`&lt;BR /&gt;&amp;gt; set STARTLOG=$TUXSTDDIR/start_$DATE.log&lt;BR /&gt;&amp;gt; tmboot -y &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1 &lt;BR /&gt;Ambiguous output redirect.&lt;BR /&gt;&amp;gt; &lt;BR /&gt;here i dont need any parameters and all and I can put this in a file or I can run like this which shouldnt make any difference.</description>
      <pubDate>Wed, 07 Jan 2009 21:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149195#M454355</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T21:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149196#M454356</link>
      <description>OK, since we're sure you're in the Korn shell, issue the commands&lt;BR /&gt;&lt;BR /&gt;whence tmboot&lt;BR /&gt;which tmboot&lt;BR /&gt;file $(whence tmboot)&lt;BR /&gt;file $(which tmboot)&lt;BR /&gt;ls -l $(whence tmboot)&lt;BR /&gt;ls -l $(which tmboot)&lt;BR /&gt;&lt;BR /&gt;and, after youve' done the DATE= and STARTLOG= commands, add&lt;BR /&gt;&lt;BR /&gt;echo $STARTLOG&lt;BR /&gt;&lt;BR /&gt;and post the results.&lt;BR /&gt;&lt;BR /&gt;I presume you've already got "TUXSTDDIR" set and epxorted in your shell environment?  Otherwise, you'll be attempting to create a log file direectly under /, which is never a good idea.</description>
      <pubDate>Wed, 07 Jan 2009 21:43:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149196#M454356</guid>
      <dc:creator>Michael Mike Reaser</dc:creator>
      <dc:date>2009-01-07T21:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149197#M454357</link>
      <description>where tmboot&lt;BR /&gt;/usr/local/tux81/bin/tmboot&lt;BR /&gt;&amp;gt; which tmboot&lt;BR /&gt;/usr/local/tux81/bin/tmboot&lt;BR /&gt;&amp;gt; whence tmboot&lt;BR /&gt;whence: Command not found.&lt;BR /&gt;&lt;BR /&gt;i dint get what you mean by&lt;BR /&gt;file $(whence tmboot)&lt;BR /&gt;file $(which tmboot)&lt;BR /&gt;ls -l $(whence tmboot)&lt;BR /&gt;ls -l $(which tmboot)&lt;BR /&gt;&lt;BR /&gt;then i set DATE and STARTLOG as before&lt;BR /&gt;&lt;BR /&gt;then i did&lt;BR /&gt;echo $STARTLOG&lt;BR /&gt;which gave&lt;BR /&gt;/tuxappl/tuxbug/rte_tlg/var/xmk/log/start_090107.log&lt;BR /&gt;&lt;BR /&gt;and yeah I have already set TUXSTDDIR and exported&lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jan 2009 21:56:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149197#M454357</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-07T21:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149198#M454358</link>
      <description>As JRF said, you are using the scummy C shell.  It has that error: Ambiguous output redirect&lt;BR /&gt;&lt;BR /&gt;To find your shell:  ps -fp $$&lt;BR /&gt;&lt;BR /&gt;&amp;gt;lets suppose that is on csh how can I do something like that in csh?&lt;BR /&gt;&lt;BR /&gt;You don't even want to think about the scummy C shell.  Find out why you aren't in a real shell.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;I didn't get what you mean by: file $(whence tmboot)&lt;BR /&gt;&lt;BR /&gt;Type that exact command.  But since you are in the scummy C shell, it will fail.&lt;BR /&gt;&lt;BR /&gt;Note: The #! line must be the first line.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;What I'm asking is how can we do like that in scummy C shell:&lt;BR /&gt;scummy csh(1) says: command &amp;gt;&amp;amp; file&lt;BR /&gt;&lt;BR /&gt;&amp;gt;Mike: issue the command: echo $SHELL&lt;BR /&gt;&lt;BR /&gt;This isn't good enough, it only gives you your login shell.&lt;BR /&gt;One way of checking your shell is to give an invalid command:&lt;BR /&gt;abcdef&lt;BR /&gt;ksh: abcdef:  not found&lt;BR /&gt;sh: abcdef:  not found.&lt;BR /&gt;abcdef: Command not found.  # scummy C shell</description>
      <pubDate>Thu, 08 Jan 2009 04:10:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149198#M454358</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-01-08T04:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149199#M454359</link>
      <description>You can change your login shell with one command:&lt;BR /&gt; &lt;BR /&gt;chsh pareshan /usr/bin/sh&lt;BR /&gt; &lt;BR /&gt;Now logout and log back in again. Your active shell will be a sane POSIX shell.</description>
      <pubDate>Thu, 08 Jan 2009 04:40:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149199#M454359</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-01-08T04:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149200#M454360</link>
      <description>Dennis &amp;amp; James,&lt;BR /&gt;&lt;BR /&gt;You guys are right. I am not in real ksh when I did what Dennis told I found im not in korn shell im in c shell.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; akdkjak&lt;BR /&gt;akdkjak: Command not found.&lt;BR /&gt;&amp;gt; file $(whence tmboot)&lt;BR /&gt;Illegal variable name.&lt;BR /&gt;and if i do same in another server in ksh it works as you said.&lt;BR /&gt;&lt;BR /&gt;now I think I will use &lt;BR /&gt;command &amp;gt;&amp;amp; file&lt;BR /&gt;&lt;BR /&gt;tmboot -y &amp;gt; &amp;amp; $STARTLOG&lt;BR /&gt;coz i dont think I am supposed to change the shell or so whtever works if gud for me... and its working&lt;BR /&gt;&lt;BR /&gt;thanks alot guys&lt;BR /&gt;you guys are brilliant&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Jan 2009 15:35:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149200#M454360</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-08T15:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149201#M454361</link>
      <description>Now I have another problem when i do &lt;BR /&gt;&lt;BR /&gt;tmboot -y &amp;gt; &amp;amp; filename&lt;BR /&gt;&lt;BR /&gt;its says&lt;BR /&gt;&lt;BR /&gt;ksh: syntax error: `&amp;amp;' unexpected&lt;BR /&gt;&lt;BR /&gt;Im wondering why this is happenning.</description>
      <pubDate>Thu, 08 Jan 2009 16:22:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149201#M454361</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-08T16:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149202#M454362</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;&amp;gt; tmboot -y &amp;gt; &amp;amp; filename&lt;BR /&gt;&lt;BR /&gt;No, you want either:&lt;BR /&gt;&lt;BR /&gt;tmboot -y &amp;gt; filename&lt;BR /&gt;&lt;BR /&gt;or:&lt;BR /&gt;&lt;BR /&gt;tmboot -y 2&amp;gt; filename&lt;BR /&gt;&lt;BR /&gt;or:&lt;BR /&gt;&lt;BR /&gt;tmboot -y filename 2&amp;gt;&amp;amp;1&lt;BR /&gt;&lt;BR /&gt;The first redirects STDOUT to filename.  The second redirects STDERR to filename.  The third redirects both STDOUT and STDERR to filename (as you originally had).&lt;BR /&gt;&lt;BR /&gt;The manpages for 'ksh' or for 'sh-poxix' describe redirection.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 08 Jan 2009 16:37:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149202#M454362</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-08T16:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149203#M454363</link>
      <description>I think You dint get me. Thats what my problem is &lt;BR /&gt;tmboot -y &amp;gt; $STARTLOG 2&amp;gt;&amp;amp;1&lt;BR /&gt;--&amp;gt; ambigious output redirect&lt;BR /&gt;this dint work coz script is running in the server using c shell and thats why I changed to &lt;BR /&gt;&lt;BR /&gt;tmboot -y &amp;gt;&amp;amp; filename now it says &amp;amp; unexpected. which I believe is the correct syntax for c shell. Im really conufused now whats going on here. there is no other way to put output of the command tmboot -y to that file $STARTLOG other than what we have discussed here before.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Jan 2009 16:59:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149203#M454363</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-01-08T16:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149204#M454364</link>
      <description>Hi (again) :&lt;BR /&gt;&lt;BR /&gt;Oh, you need to run your script as a 'csh' (yuk!).  Do this (thank Tom, [from the original link I cited] not me!):&lt;BR /&gt;&lt;BR /&gt;cat .sillycsh&lt;BR /&gt;#!/usr/bin/csh&lt;BR /&gt;set LOG="/tmp/something_`(date '+%Y%m%d_%X')`"&lt;BR /&gt;sh -c "lvlnboot -y &amp;gt; ${LOG} 2&amp;gt;&amp;amp;1"&lt;BR /&gt;echo "see: ${LOG}"&lt;BR /&gt;&lt;BR /&gt;...I used 'lvlnboot' since I don't have your executable :-)&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Jan 2009 18:03:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149204#M454364</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-01-08T18:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Redirect error</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149205#M454365</link>
      <description>and I wonder what ever happened with this:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1298982" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1298982&lt;/A&gt;</description>
      <pubDate>Thu, 08 Jan 2009 18:56:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-redirect-error/m-p/5149205#M454365</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-01-08T18:56:10Z</dc:date>
    </item>
  </channel>
</rss>

