kubo/test/bin/continueyn
2014-12-08 20:39:00 -08:00

11 lines
155 B
Bash
Executable File

#!/bin/sh
# Author: Juan Batiz-Benet <juan@benet.ai>
# MIT LICENSED
read -p "continue? [y/N] "
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
exit 0
fi
exit -1