Operating System - HP-UX
1832524 Members
8009 Online
110043 Solutions
New Discussion

Re: FMLI Availability on HP-UX

 
Curtis L. Cross
New Member

FMLI Availability on HP-UX

Does anyone know of a Menu creation package similiar to fmli found on SVR4 platforms.
3 REPLIES 3
Paula J Frazer-Campbell
Honored Contributor

Re: FMLI Availability on HP-UX

Hi Curtis

Why now script a menu?
Example:-
--------------cut here---------------
continue="yes"
while [ "$continue" = "yes" ]
do
clear
echo " SYSTEMS MAIN MENU "
echo " -------------------------------- "
echo "| 0 : VIEWDATA Quiescence |"
echo "| 1 : SYSTEM CONTROL |"
echo "| 2 : SPIDERS |"
echo "| x : Exit Menu |"
echo " -------------------------------- "
read ans
case $ans in
0) ./sysadmin/menus/que
;;
1) ./sysadmin/menus/control
;;
2) ./sysadmin/menus/spider
;;
x) continue="no"
;;
esac
done

--------------cut here---------------


Paula
If you can spell SysAdmin then you is one - anon
James R. Ferguson
Acclaimed Contributor

Re: FMLI Availability on HP-UX

Curtis:

Take a look at the "key" shell. From the man pages for 'keysh': 'keysh' is an extension of the standard Korn shell that uses hierarchical softkey menus and context-sensitive help to aid users in building command-lines, combining the power of the Korn-shell with the ease-of-use of a menu system.

See also this document:

http://docs.hp.com/hpux/onlinedocs/B2355-90046/B2355-90046.html

Hopefully this will help you.

...JRF...
Curtis L. Cross
New Member

Re: FMLI Availability on HP-UX

We're in the processing of porting an application from a SVR4 box to a HP platform. The current system utilitizes the fmli package as a front-end menu for a number of end-users. Maintaining a script using any of the HP-UX / Unix shells would be a last resort.