bin/confirm @ c1a1eef2ea4e

Switch to redact-pass
author Steve Losh <steve@stevelosh.com>
date Wed, 01 Aug 2018 11:40:44 +0000
parents bfd9b1f910a3
children 32bdaee0bb8b
#!/usr/bin/env bash

read -p "Are you sure? " -r
if [[ $REPLY =~ ^[Yy](es)?$ ]]
then
    exit 0
else
    exit 1
fi