+routine to clone templates to Projects/Templates

This commit is contained in:
oreodave
2019-11-18 23:11:20 +00:00
parent aed71004b9
commit b721854134

View File

@@ -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