diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-02-25 00:46:58 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-02-25 00:46:58 -0500 |
commit | d4fab621ca7f1e4cc788b1bea8f7629be52d31bc (patch) | |
tree | fbbc5099fcebc3551117598df2b5cb1bcadb6902 /uninit.d/01prompt | |
parent | 11fc661400581fd5c04e255db4b91477c0b92e4e (diff) |
mixed case matching
Diffstat (limited to 'uninit.d/01prompt')
-rwxr-xr-x | uninit.d/01prompt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uninit.d/01prompt b/uninit.d/01prompt index 2732310..a87defb 100755 --- a/uninit.d/01prompt +++ b/uninit.d/01prompt @@ -7,7 +7,7 @@ echo "" printf "Are you sure you want to do this? [yN] " read answer case "$answer" in - Y|y|yes|YES) + [Yy][Ee][Ss]) echo "Proceeding.." exit 0 ;; |