mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
11 lines
130 B
Bash
Executable File
11 lines
130 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
confirm () {
|
|
declare yn
|
|
read -p " [y/N] " yn
|
|
[[ ${yn,,} =~ y(es)? ]] && return 0
|
|
return 1
|
|
}
|
|
|
|
confirm
|