aboutsummaryrefslogtreecommitdiff
path: root/scripts/bbconfirm
blob: cae1153b1a7470c9d5ac0cfc6e5187a2158e859e (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Ask for user confirmation
set -e
if command -v ask >/dev/null; then
    ask -n "$(printf "$1Is that okay?\033[?25h")"
else
    reply="$(bbask -1 "$(printf "$1\033[0;1mIs that okay? [y/N] ")")"
    [ "$reply" != 'y' ]
fi