mirror of https://github.com/bjeanes/dotfiles.git
8 lines
90 B
Fish
8 lines
90 B
Fish
|
function confirm
|
||
|
echo "OK [y/N]?"
|
||
|
read confirm_result
|
||
|
test 'y' = $confirm_result
|
||
|
|
||
|
|
||
|
end
|