Directory:Derek Elder/Programs/PhonebookSystem

MyWikiBiz, Author Your Legacy — Friday May 03, 2024
< Directory:Derek Elder‎ | Programs
Revision as of 06:27, 7 February 2010 by Derek Elder (talk | contribs) (Start of linux shell program upload)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
echo "Please enter the name of your phonebook: "
read book
echo "Phone book system"
echo "1) Add an entry"
echo "2) Delete an entry"
echo "3) List file or entry"
echo "4) Change an entry"
echo "5) Exit system"
echo "Please enter your menu choice: "
read choice
while[ $choice != 5 ]
do
  case $choice in
  //To do
  esac
  echo "1) Add an entry"
  echo "2) Delete an entry"
  echo "3) List file or entry"
  echo "4) Change an entry"
  echo "5) Exit system"
  echo "Please enter your menu choice: "
  read choice
done