A2osX/ADMIN/USERMENU.txt

59 lines
1.1 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
PREFIX
AUTO 4,1
#!/BIN/SH
#
# This menu will display a menu of options
# to Administer Users on your A2osX system.
#
# ECHO "Starting USERMENU" >> /RAM3/TESTSETLOG
# SET >> /RAM3/TESTSETLOG
SET MENULOOP = 1
WHILE [ $MENULOOP -EQ 1 ]
ECHO "\f A2osX User Admin Menu\n"
ECHO " L) List Users"
ECHO " 2) Add User"
ECHO " 3) Delete User"
ECHO " 4) Edit User Details"
ECHO " 5) Change Password"
ECHO "\n X) Exit"
ECHO "\n"
READ -P "Enter Choice: " Z
IF [ -Z $Z ]
#User pressed return with no choice, bad idea
FI
SWITCH $Z
CASE "x"
CASE "X"
EXIT
BREAK
CASE "L"
CASE "l"
# ECHO "Calling LISTUSERS from USERMENU" >> /RAM3/TESTSETLOG
# SET >> /RAM3/TESTSETLOG
LISTUSERS
# ECHO "Returning from LISTUSERS" >> /RAM3/TESTSETLOG
# SET >> /RAM3/TESTSETLOG
BREAK
CASE 2
ADDUSER
BREAK
CASE 3
DELUSER
BREAK
CASE 4
EDITUSER
BREAK
CASE 5
PASSWD
BREAK
DEFAULT
ECHO "You entered an invalid choice"
PAUSE
END
LOOP
ECHO
ECHO
MAN
TEXT /MAKE/USR/SHARE/ADMIN/USERMENU