-
-
Notifications
You must be signed in to change notification settings - Fork 36
Confirmation
Alex Skrypnyk edited this page Jul 17, 2019
·
8 revisions
Confirmation allows you to specify a string to prompt the user with and then control the execution of your command. If they type "y", the command will return true (exit 0), otherwise it will return false (exit 1).
...
commands:
confirm:
cmd: |
read -r -p "{{args}} [y/N] " response
if [ $response = y ]
then
true
else
false
fi
or as a one-liner:
...
commands:
confirm:
cmd: read -r -p "${@} [y/N] " response; [ ${response} = "y" ]
Simple confirmation
$ ahoy confirm "Are you sure you want to do this?"
Are you sure you want to do this? [y/N]
$ y
Using confirmation with other commands. See Controlling Execution
$ ahoy confirm "Delete your /tmp directory?" && \
rm -rf /tmp/* || \
echo "Skipping..."
Delete your /tmp directory? [y/N]
$ n # (or anything besides y)
Skipping...