#!/bin/bash
echo "Please, select your choice (1-4):"
echo 1- Add Course
echo 2- Delete Course
echo 3- Search Course
echo 4- exit
read input
case $input in
1)
script1
;;
2)
script2
;;
3)
script3
;;
4)
exit 0
;;
*)
echo Invalid choice
esac
1 is associated with the file Add.sh
2 is associated with the file delete.sh
3 is associated with the file seatch.sh
4 is to exit