mirror of
https://github.com/mr0xb/scripts.git
synced 2026-08-27 19:34:57 -04:00
10 lines
130 B
Shell
Executable file
10 lines
130 B
Shell
Executable file
#!/usr/bin/env bash
|
|
|
|
confirm () {
|
|
declare yn
|
|
read -p " [y/N] " yn
|
|
[[ ${yn,,} =~ y(es)? ]] && return 0
|
|
return 1
|
|
}
|
|
|
|
confirm
|