automatically by `bootstrap` This will simplify the process of installing the dotfiles while still giving users control
10 lines
111 B
Bash
10 lines
111 B
Bash
#!/bin/sh
|
|
|
|
prompt() {
|
|
printf "$1"
|
|
read INPUT
|
|
case $INPUT in
|
|
[yY] ) return 0 ;;
|
|
* ) return 1 ;;
|
|
esac;
|
|
}
|