<?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: dtksh in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312409#M683136</link>
    <description>Hi Muktha:&lt;BR /&gt;&lt;BR /&gt;GUIs aside, one of the nicest features available in the 'dtksh' (Korn93) shell is the ability to compute and work in real numbers and not just integers.&lt;BR /&gt;&lt;BR /&gt;Your HP server will offer 'dtksh' as '/usr/dt/bin/dtksh' -- along with a manpage (of course).&lt;BR /&gt;&lt;BR /&gt;# cat .realnums&lt;BR /&gt;#!/usr/dt/bin/dtksh&lt;BR /&gt;typeset -F R1&lt;BR /&gt;typeset -E R2&lt;BR /&gt;(( R1=1/8 ))&lt;BR /&gt;echo ${R1}&lt;BR /&gt;(( R2=1/8 ))&lt;BR /&gt;echo ${R2}&lt;BR /&gt;exit 0&lt;BR /&gt;# ./realnums&lt;BR /&gt;.1250000000&lt;BR /&gt;0.125&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
    <pubDate>Tue, 25 Nov 2008 12:59:56 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2008-11-25T12:59:56Z</dc:date>
    <item>
      <title>dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312406#M683133</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I am working in Unix .I wish to learn GUI using shell programming  .&lt;BR /&gt;But I don't have any basic idea of dtksh.&lt;BR /&gt;I did not get much information from net.&lt;BR /&gt;Could you please help to know about dtksh ?&lt;BR /&gt;Or anyone has the documents for the same?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Muktha</description>
      <pubDate>Tue, 25 Nov 2008 09:43:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312406#M683133</guid>
      <dc:creator>Muktha</dc:creator>
      <dc:date>2008-11-25T09:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312407#M683134</link>
      <description>&amp;gt;But I don't have any basic idea of dtksh.&lt;BR /&gt;&lt;BR /&gt;This is just ksh93, nothing to do with GUI.&lt;BR /&gt;It should be pretty much the same as a real shell, ksh or sh.</description>
      <pubDate>Tue, 25 Nov 2008 09:47:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312407#M683134</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-11-25T09:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312408#M683135</link>
      <description>Muktha,&lt;BR /&gt;&lt;BR /&gt;If you're serious about using dtksh, you should get this book:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.amazon.com/Kornshell-Graphical-Programming-Addison-Wesley-Professional/dp/0201633752" target="_blank"&gt;http://www.amazon.com/Kornshell-Graphical-Programming-Addison-Wesley-Professional/dp/0201633752&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want an easier and more modern tool for doing GUI programming from a script I'd look at TCL/Tk:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Tcl/tcltk-8.5.4/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Tcl/tcltk-8.5.4/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Tue, 25 Nov 2008 11:07:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312408#M683135</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2008-11-25T11:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312409#M683136</link>
      <description>Hi Muktha:&lt;BR /&gt;&lt;BR /&gt;GUIs aside, one of the nicest features available in the 'dtksh' (Korn93) shell is the ability to compute and work in real numbers and not just integers.&lt;BR /&gt;&lt;BR /&gt;Your HP server will offer 'dtksh' as '/usr/dt/bin/dtksh' -- along with a manpage (of course).&lt;BR /&gt;&lt;BR /&gt;# cat .realnums&lt;BR /&gt;#!/usr/dt/bin/dtksh&lt;BR /&gt;typeset -F R1&lt;BR /&gt;typeset -E R2&lt;BR /&gt;(( R1=1/8 ))&lt;BR /&gt;echo ${R1}&lt;BR /&gt;(( R2=1/8 ))&lt;BR /&gt;echo ${R2}&lt;BR /&gt;exit 0&lt;BR /&gt;# ./realnums&lt;BR /&gt;.1250000000&lt;BR /&gt;0.125&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Nov 2008 12:59:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312409#M683136</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-11-25T12:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312410#M683137</link>
      <description>as far as i know dtksh is ksh93 with some more colour/graphics operations (which i never got to work)&lt;BR /&gt;&lt;BR /&gt;reading:&lt;BR /&gt;&lt;BR /&gt;at first &lt;A href="http://kornshell.com/doc/ksh93.html" target="_blank"&gt;http://kornshell.com/doc/ksh93.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and second this one has helped me a LOT with ksh93:&lt;BR /&gt;&lt;A href="http://mideiros.net/doc/system/packages/ksh/MEMORANDUM" target="_blank"&gt;http://mideiros.net/doc/system/packages/ksh/MEMORANDUM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Nov 2008 19:30:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312410#M683137</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2008-11-25T19:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312411#M683138</link>
      <description>Hi Muktha,&lt;BR /&gt;&lt;BR /&gt;Pls check the below links&lt;BR /&gt;&lt;A href="http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_007.HTM" target="_blank"&gt;http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_007.HTM&lt;/A&gt;&lt;BR /&gt;=======================&lt;BR /&gt;&lt;A href="http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51A_HTML/MAN/MAN1/0034____.HTM" target="_blank"&gt;http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51A_HTML/MAN/MAN1/0034____.HTM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Prashant</description>
      <pubDate>Wed, 26 Nov 2008 04:15:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312411#M683138</guid>
      <dc:creator>Prashanth Waugh</dc:creator>
      <dc:date>2008-11-26T04:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: dtksh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312412#M683139</link>
      <description>Hi Muktha,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_011.HTM" target="_blank"&gt;http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_011.HTM&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Prashant</description>
      <pubDate>Wed, 26 Nov 2008 04:31:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dtksh/m-p/4312412#M683139</guid>
      <dc:creator>Prashanth Waugh</dc:creator>
      <dc:date>2008-11-26T04:31:12Z</dc:date>
    </item>
  </channel>
</rss>

