# 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 "Glucose Intermediate Files" echo "enter 1 to proceed 999 to quit" read select while [ $select -ne 999 ] do echo "-----------" echo "1 recommended.txt" echo "2 relate_several_cross_out1.txt" echo "3 relate_several_cross_out2.txt" echo "4 results.txt" echo "5 relate_ave.txt" echo "6 relate_several_cross_out3.txt" echo "7 relate_several_cross_check5.txt" echo "8 out.in" echo "9 entry_work.txt" echo "10 entry.html" echo "11 entry2.html" echo "12 summary.txt" echo "13 summary2.txt" echo "14 summary3.txt" echo "15 summary4.txt" echo "16 summary5.txt" echo "17 table.html" echo "18 table2.html" echo "19 table3.html" echo "20 table4.html" echo "777 NOTES_DJD.txt" echo "999 quit" echo "select" read select case $select in 1) $EDITOR recommended.txt;; 2) $EDITOR relate_several_cross_out1.txt;; 3) $EDITOR relate_several_cross_out2.txt;; 4) $EDITOR results.txt;; 5) $EDITOR relate_ave.txt;; 6) $EDITOR relate_several_cross_out3.txt;; 7) $EDITOR relate_several_cross_check5.txt;; 8) $EDITOR out.in;; 9) $EDITOR entry_work.txt;; 10) $EDITOR entry.html;; 11) $EDITOR entry2.html;; 12) $EDITOR summary.txt;; 13) $EDITOR summary2.txt;; 14) $EDITOR summary3.txt;; 15) $EDITOR summary4.txt;; 16) $EDITOR summary5.txt;; 17) firefox html/table.html;; 18) firefox html/table2.html;; 19) firefox html/table3.html;; 20) firefox html/table4.html;; 777) $EDITOR NOTES_DJD.txt;; esac done