Files

46 lines
775 B
Plaintext

seti $printhelp = $printhelp
while 1 = 1
echo " "
echo "Device Information Menu"
echo "Q) Quit"
echo "P) Previous Menu"
echo "H) Toggle Script Help"
echo "1) Identify Device"
echo "2) SMART Data"
if $printhelp = 1
exit 0
endif
echo "Enter your choice:"
userinput $choicestring
if $choicestring = q
break
elseif $choicestring = p
previousscript
elseif $choicestring = h
if $help = 0
seti $help = 1
echo "Help is now turned on"
else
seti $help = 0
echo "Help is now turned off"
endif
elseif $choicestring = 1
loadscript ata_identify_device.osc
break
elseif $choicestring = 2
loadscript ata_smart_data.osc
break
else
echo "bad choice= " $choicestring
endif
done
end