<?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: csh - the simplest solution ?? in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797315#M2363</link>
    <description>Hi Dave,&lt;BR /&gt;&lt;BR /&gt;there is no way to "translate" to c-shell... But if you post your script we can perhaps help you here. UNIX- commands word the same in c- shell and other ones mostly, but if you need loops or something like that, you are right, there is a different syntax. So please post your script here if possible and we will try to help you.&lt;BR /&gt;&lt;BR /&gt;Allways stay on the bright side of life!&lt;BR /&gt;&lt;BR /&gt;Peter</description>
    <pubDate>Mon, 02 Sep 2002 11:30:23 GMT</pubDate>
    <dc:creator>Peter Kloetgen</dc:creator>
    <dc:date>2002-09-02T11:30:23Z</dc:date>
    <item>
      <title>csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797312#M2360</link>
      <description>I'm intrigued ... how the translation of a bash shell script to c shell is the simplest solution to the stated problem.</description>
      <pubDate>Fri, 30 Aug 2002 08:05:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797312#M2360</guid>
      <dc:creator>Dave Pointon</dc:creator>
      <dc:date>2002-08-30T08:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797313#M2361</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;what IS the stated problem ?&lt;BR /&gt;Why do you need to convert it ?</description>
      <pubDate>Mon, 02 Sep 2002 04:40:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797313#M2361</guid>
      <dc:creator>Stefan Marquardt_1</dc:creator>
      <dc:date>2002-09-02T04:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797314#M2362</link>
      <description>Hi Stefan,&lt;BR /&gt;&lt;BR /&gt;The problem as stated is to have the ability to produce (albeit simply) formatted text output from a bash/bourne/korn shell script (difficult to tell since all use the echo command). I have clear memories of C shell using the pring command to effect the same end - moreover, C shell commands are different to Bourne shell based commands - hence the translation.</description>
      <pubDate>Mon, 02 Sep 2002 08:54:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797314#M2362</guid>
      <dc:creator>Dave Pointon</dc:creator>
      <dc:date>2002-09-02T08:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797315#M2363</link>
      <description>Hi Dave,&lt;BR /&gt;&lt;BR /&gt;there is no way to "translate" to c-shell... But if you post your script we can perhaps help you here. UNIX- commands word the same in c- shell and other ones mostly, but if you need loops or something like that, you are right, there is a different syntax. So please post your script here if possible and we will try to help you.&lt;BR /&gt;&lt;BR /&gt;Allways stay on the bright side of life!&lt;BR /&gt;&lt;BR /&gt;Peter</description>
      <pubDate>Mon, 02 Sep 2002 11:30:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797315#M2363</guid>
      <dc:creator>Peter Kloetgen</dc:creator>
      <dc:date>2002-09-02T11:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797316#M2364</link>
      <description>Whenever I see the words "produce formatted text" and "shell script" used together, I cringe.  &lt;BR /&gt;&lt;BR /&gt;Why not use PERL?  It's faster than csh, more powerful than ksh, and is easier to learn than either ksh or csh.  &lt;BR /&gt;&lt;BR /&gt;If the job calls for a hammer, use a hammer - not a screwdriver.  Know what I mean?  &lt;BR /&gt;&lt;BR /&gt;IMHO,&lt;BR /&gt;&lt;BR /&gt;-ted</description>
      <pubDate>Tue, 03 Sep 2002 13:43:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797316#M2364</guid>
      <dc:creator>Ted M Johnson_1</dc:creator>
      <dc:date>2002-09-03T13:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: csh - the simplest solution ??</title>
      <link>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797317#M2365</link>
      <description>Writing a C shell script is NEVER the&lt;BR /&gt;right answer to a problem.&lt;BR /&gt;&lt;BR /&gt;For a simple task, a ksh/sh-posix script&lt;BR /&gt;may be adequate.  For more complex&lt;BR /&gt;tasks, you'll probably need to incorporate&lt;BR /&gt;some awk into the script or switch to all&lt;BR /&gt;awk.  To do any kind of heavy lifting,&lt;BR /&gt;though, Perl is probably your best bet.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Sep 2002 19:22:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/csh-the-simplest-solution/m-p/2797317#M2365</guid>
      <dc:creator>Gregory Fruth</dc:creator>
      <dc:date>2002-09-03T19:22:01Z</dc:date>
    </item>
  </channel>
</rss>

