diff options
author | Luke Smith <luke@lukesmith.xyz> | 2019-04-26 11:48:24 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2019-04-26 11:48:24 -0400 |
commit | f106dbd363267662ae473124458c8929fec20e0a (patch) | |
tree | 3b51b6b10a6ec335a418c3c7e99425880c1fc4d7 /bin/mw | |
parent | e81e2c450d9627f1e7259ac23ff550adc1e83b33 (diff) |
spell
Diffstat (limited to 'bin/mw')
-rwxr-xr-x | bin/mw | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -215,7 +215,7 @@ finalize() { \ return 0 } -confirm() { printf "Do you want to to %s? [y/N]\\n\t" "$@" && read -r input && ! echo "$input" | grep -i "^y$\|^yes$" >/dev/null && printf "That doesn't seem like a yes to me.\\n\\n" && return 1 +confirm() { printf "Do you want to %s? [y/N]\\n\t" "$@" && read -r input && ! echo "$input" | grep -i "^y$\|^yes$" >/dev/null && printf "That doesn't seem like a yes to me.\\n\\n" && return 1 printf "Are you really, really sure you want to %s?\\n\t" "$@" && read -r input && ! echo "$input" | grep -i "^y$\|^yes$" >/dev/null && printf "That doesn't seem like a yes to me.\\n\\n" && return 1 return 0 ;} |