diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-11-18 23:11:20 +0000 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-11-18 23:11:20 +0000 |
commit | b7218541343bd4aafd3ec0d5b9bd1980f22f129a (patch) | |
tree | 340e7918aa4f01465029e9c1427f1aaf8488ceb5 | |
parent | aed71004b9356f3101d32cbe62bdaa9f9a1e0b45 (diff) | |
download | dotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.tar.gz dotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.tar.bz2 dotfiles-b7218541343bd4aafd3ec0d5b9bd1980f22f129a.zip |
+routine to clone templates to Projects/Templates
-rw-r--r-- | install.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |