bin/confirm @ dd879591c545

Hack together a little weather CLI
author Steve Losh <steve@stevelosh.com>
date Sun, 30 Aug 2020 21:13:42 -0400
parents 32bdaee0bb8b
children (none)
#!/usr/bin/env bash

if test "$1" == ""; then
    read -p "Are you sure? " -r
else
    read -p "$1 " -r
fi

if [[ $REPLY =~ ^[Yy](es)?$ ]]
then
    exit 0
else
    exit 1
fi