# Copyright (C) 2023 Dennis J. Darland # This file is part of Dennis J Darland's Glucose Prediction Software. # It is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with it. If not, see . echo "-----------" echo "Glucose Programs and Data" echo "-----------" echo "1 ee1 - Edit Programs" echo "2 ee2 - Edit Intermediate Data or Results" echo "----------------------------------------------" echo "777 NOTES_DJD.txt" echo "999 quit" echo "select" read select while [ $select -ne 999 ] do case $select in 1) ./ee1 ;; 2) ./ee2 ;; 777) $EDITOR NOTES_DJD.txt & ;; esac echo "-----------" echo "Glucose Programs and Data" echo "-----------" echo "1 ee1 - Edit Programs" echo "2 ee2 - Edit Intermediate Data or Results" echo "----------------------------------------------" echo "777 NOTES_DJD.txt" echo "999 quit" echo "select" read select done