1825756 Members
2702 Online
109687 Solutions
New Discussion

Re: dtksh

 
Muktha
Frequent Advisor

dtksh

Hi all,

I am working in Unix .I wish to learn GUI using shell programming .
But I don't have any basic idea of dtksh.
I did not get much information from net.
Could you please help to know about dtksh ?
Or anyone has the documents for the same?

Regards
Muktha
6 REPLIES 6
Dennis Handly
Acclaimed Contributor

Re: dtksh

>But I don't have any basic idea of dtksh.

This is just ksh93, nothing to do with GUI.
It should be pretty much the same as a real shell, ksh or sh.

Re: dtksh

Muktha,

If you're serious about using dtksh, you should get this book:

http://www.amazon.com/Kornshell-Graphical-Programming-Addison-Wesley-Professional/dp/0201633752

If you want an easier and more modern tool for doing GUI programming from a script I'd look at TCL/Tk:

http://hpux.connect.org.uk/hppd/hpux/Tcl/tcltk-8.5.4/

HTH

Duncan

I am an HPE Employee
Accept or Kudo
James R. Ferguson
Acclaimed Contributor

Re: dtksh

Hi Muktha:

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.

Your HP server will offer 'dtksh' as '/usr/dt/bin/dtksh' -- along with a manpage (of course).

# cat .realnums
#!/usr/dt/bin/dtksh
typeset -F R1
typeset -E R2
(( R1=1/8 ))
echo ${R1}
(( R2=1/8 ))
echo ${R2}
exit 0
# ./realnums
.1250000000
0.125

Regards!

...JRF...
Florian Heigl (new acc)
Honored Contributor

Re: dtksh

as far as i know dtksh is ksh93 with some more colour/graphics operations (which i never got to work)

reading:

at first http://kornshell.com/doc/ksh93.html



and second this one has helped me a LOT with ksh93:
http://mideiros.net/doc/system/packages/ksh/MEMORANDUM

yesterday I stood at the edge. Today I'm one step ahead.
Prashanth Waugh
Esteemed Contributor

Re: dtksh

Hi Muktha,

Pls check the below links
http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_007.HTM
=======================
http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V51A_HTML/MAN/MAN1/0034____.HTM

Regards
Prashant
For success, attitude is equally as important as ability
Prashanth Waugh
Esteemed Contributor

Re: dtksh

Hi Muktha,

http://h30097.www3.hp.com/docs/base_doc/DOCUMENTATION/V40F_HTML/DTKSH/DOCU_011.HTM


Regards
Prashant
For success, attitude is equally as important as ability