From d4786e78a0b029581ac9d176e7d533342fe2cb95 Mon Sep 17 00:00:00 2001 From: oreodave Date: Mon, 18 Nov 2019 23:01:07 +0000 Subject: +Generate template offline by copying the git dir In case I'm offline, just use this function to generate new projects through copying the template item directly --- zshenv | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/zshenv b/zshenv index 270e2fc..5fb3278 100644 --- a/zshenv +++ b/zshenv @@ -27,6 +27,18 @@ gentemplate() { rm -rf $2/.git; } +gentemplateoff () { + case $1 in + 'c') cp -r ~/Projects/Templates/CTemplate $2;; + 'cpp') cp -r ~/Projects/Templates/CPPTemplate $2;; + 'python') cp -r ~/Projects/Templates/PythonTemplate $2;; + 'node') cp -r ~/Projects/Templates/NodeTemplate $2;; + 'ard') cp -r ~/Projects/Templates/ArduinoTemplate $2;; + *) return;; + esac + rm -rf $2/.git; +} + # Web Querying search () { search_query=${1// /_} -- cgit v1.2.3-13-gbd6f