#!/bin/bash 
echo -n 'J oder N : '
read OK 


case $OK in
  J) echo Ja;;
  N) echo Nein;;
  *) echo Depp;;
esac