From b7218541343bd4aafd3ec0d5b9bd1980f22f129a Mon Sep 17 00:00:00 2001 From: oreodave Date: Mon, 18 Nov 2019 23:11:20 +0000 Subject: +routine to clone templates to Projects/Templates --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 79180fe..8e3d177 100644 --- a/install.sh +++ b/install.sh @@ -18,3 +18,8 @@ mkdir ~/School; touch ~/Text/notes.org; touch ~/Text/todo.org; touch ~/Text/calendar.org; + +declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate"); +for template in ${templates[@]}; do + git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template; +done -- cgit v1.2.3-13-gbd6f