Return to Snippet

Revision: 66226
at March 30, 2014 21:06 by jlmarks


Initial Code
read -p "do you want to continue?" -n 1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
  then
    #do whatever you are checking on 
fi

Initial URL


Initial Description


Initial Title
Bash confirmation

Initial Tags
Bash

Initial Language
Bash