#!/bin/bash git init if [ ! -d "$1" ]; then echo "Template doesn't exist!" else cp -r ~/.config/templates/$1 . fi