Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
function proceed_prompt () {
read -p "Proceed? [Y/n]" -n 1 -r
if [[ -z $REPLY ]]; then
return 0
elif [[ $REPLY =~ ^[Yy]$ ]]; then
echo # move to a new line
return 0
else
echo # move to a new line
return 1
fi
}
proceed_prompt || { echo "Aborting"; return; }