The Korn shell (ksh) is a shell with advanced scripting features, commonly found on commercial unices and some BSD systems but rarely used on Linux.
2
votes
1answer
247 views
Del key in AIX ksh over PuTTY telnet
At the place where I work we're developing under AIX with ksh and connecting to it via telnet. Most people use ArcTel to connect, while I prefer PuTTY. The only problem I have with PuTTY is that the ...
2
votes
0answers
202 views
KSH styling text based menu using STDERR
Is it possible to format the STDERR in order to have a better looking menu using the select command?
I have a simple select
select oChoice in $(<tempMenu.menu) ; do
case "$oChoice" in
...
1
vote
0answers
336 views
Dynamic search and replace in Ksh
Machines at work follow a constant naming pattern:
host[domain]_[id]
where [domain] is either "d" for dev machines and "p" for production machines, and [id] is a 2-digit string that is different for ...