animation/common.sh

12 lines
174 B
Bash
Raw Normal View History

2021-09-16 15:05:07 +00:00
#!/bin/bash
askContinue () {
echo "Are you ready to continue? (yes/no)"
read input
if [ "$input" != "n" ] && [ "$input" != "no" ]
then
echo "${1}"
else
exit 1
fi
}