#!/bin/bash
#bash wait until user enters "yes"
until  [[ "$VALUE" = "yes" ]]
   do
    echo "are you sure you want to quit ?"
read  VALUE
done