<?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: small script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030291#M761002</link>
    <description>&lt;BR /&gt;&amp;gt;&amp;gt; I want to have a script test.sh&lt;BR /&gt;that for every 2 different numbers to have the following kind of result&lt;BR /&gt;#./test.sh 3 8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If that's what you really want, then see prior solutions.&lt;BR /&gt;&lt;BR /&gt;However, I don't think that is not really what you want.&lt;BR /&gt;&lt;BR /&gt;What is the real problem you are trying to solve?&lt;BR /&gt;&lt;BR /&gt;Why do you want to use a million dollar solution to provide such a trivial list?&lt;BR /&gt;&lt;BR /&gt;What will the list be used for?&lt;BR /&gt;&lt;BR /&gt;The 'right' answer to your simplistic question depends on the 'real' problem you are trying to solve.&lt;BR /&gt;&lt;BR /&gt;Agreed?&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Feb 2007 12:07:54 GMT</pubDate>
    <dc:creator>Hein van den Heuvel</dc:creator>
    <dc:date>2007-02-23T12:07:54Z</dc:date>
    <item>
      <title>small script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030288#M760999</link>
      <description>&lt;BR /&gt;I want to have a script test.sh&lt;BR /&gt;that for every 2 different numbers to have the following kind of result&lt;BR /&gt;#./test.sh 3 8&lt;BR /&gt;&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;5&lt;BR /&gt;6&lt;BR /&gt;7&lt;BR /&gt;8&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Andy</description>
      <pubDate>Fri, 23 Feb 2007 11:23:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030288#M760999</guid>
      <dc:creator>Inter_1</dc:creator>
      <dc:date>2007-02-23T11:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: small script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030289#M761000</link>
      <description>Well, if you want one, why don't you write one? &lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;typeset -i LO=${1}&lt;BR /&gt;typeset -i HI=${2}&lt;BR /&gt;while [[ ${LO} -le ${HI} ]]&lt;BR /&gt;  do&lt;BR /&gt;     echo "${LO}"&lt;BR /&gt;     ((LO += 1))&lt;BR /&gt;  done&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;You really should try to do a little on your own before you ask for such a simple script. If you are preparing for a test, don't bother. I have already assigned your grade.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 11:28:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030289#M761000</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-02-23T11:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: small script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030290#M761001</link>
      <description>Andy,&lt;BR /&gt;please see your own thread:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1098581" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1098581&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Please also read:&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt; on how to reward any useful answers given to your questions.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 11:47:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030290#M761001</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2007-02-23T11:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: small script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030291#M761002</link>
      <description>&lt;BR /&gt;&amp;gt;&amp;gt; I want to have a script test.sh&lt;BR /&gt;that for every 2 different numbers to have the following kind of result&lt;BR /&gt;#./test.sh 3 8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If that's what you really want, then see prior solutions.&lt;BR /&gt;&lt;BR /&gt;However, I don't think that is not really what you want.&lt;BR /&gt;&lt;BR /&gt;What is the real problem you are trying to solve?&lt;BR /&gt;&lt;BR /&gt;Why do you want to use a million dollar solution to provide such a trivial list?&lt;BR /&gt;&lt;BR /&gt;What will the list be used for?&lt;BR /&gt;&lt;BR /&gt;The 'right' answer to your simplistic question depends on the 'real' problem you are trying to solve.&lt;BR /&gt;&lt;BR /&gt;Agreed?&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 12:07:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030291#M761002</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-02-23T12:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: small script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030292#M761003</link>
      <description>Thanks for your time</description>
      <pubDate>Fri, 23 Feb 2007 12:27:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/small-script/m-p/5030292#M761003</guid>
      <dc:creator>Inter_1</dc:creator>
      <dc:date>2007-02-23T12:27:13Z</dc:date>
    </item>
  </channel>
</rss>

