#!/bin/bash
read -p "Is this ok [y/N]:" CONT
if [ "$CONT" == "y" ]; then
  echo "yes geldi...";
else
  echo "no geldi...";
fi
işini görür sanırım ?