mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
24 lines
503 B
Bash
Executable file
24 lines
503 B
Bash
Executable file
#!/bin/bash
|
|
echo 'This script takes care of getting dots ready to use'
|
|
echo 'Enter the number of the task you want to perform:'
|
|
|
|
PS3='Task: '
|
|
select TASK in 'Mac setup' 'EL setup' 'Quit';
|
|
do
|
|
case $TASK in
|
|
'Mac setup' )
|
|
~/.dotfile/bin/bootstrap/bootstrap_mac.sh now
|
|
;;
|
|
'EL setup' )
|
|
~/.dotfile/bin/bootstrap/bootstrap_el.sh now
|
|
;;
|
|
'Quit' )
|
|
echo 'Exiting'
|
|
exit 0
|
|
;;
|
|
* )
|
|
echo 'Invalid selection, quitting.'
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|