I'm trying to add an option to our Ops bespoke menu (I'm not a great scripter!), whereby they can be given command line access. Similar to the F9 in smit.
How good is your operators' basic AIX training?
How good is your backup schedule? Tried and tested AND OK'd?
Generally a bad idea! I'd script around any shell activity your operators might need...
Something very basic:
Code:
while true
do
tput clear
echo "MENU
...
S for Shell
...
Choice? \c"
typeset -u choice
read choice
case $choice in
...
S*)
echo "Use exit+ENTER or ctrl-D to return to menu"
ksh
;;
esac
done
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.