topical media & game development

talk show tell print

basic-shell-03-case-os.sh / sh



  
  echo "Please enter your favorite operating system, "
  echo -n "linux, macosx, windows, amigados, or beos: "
  read os
  
  case os in
  
  linux)
      echo "Way cool, you like Linux."
  ;;
  macosx)
      echo "You like Roman numerals."
  ;;
  windows)
      echo "Time to check for a virus."
  ;;
  amigados)
      echo "AmigaDOS will never die."
  ;;
  beos)
      echo "Count yourself lucky."
  ;;
  *) 
      echo "Why did you choose os?"
  ;;
  esac
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.