Skip to content

Instantly share code, notes, and snippets.

View bobmonsour's full-sized avatar

Bob Monsour bobmonsour

View GitHub Profile
@BenDMyers
BenDMyers / .bashrc
Last active December 16, 2022 11:26
Bash function to create an Eleventy project
function el() {
mkdir "$1"
cd "$1"
git init
mkdir -p src/_data/
mkdir src/_includes/
# Populate .gitignore
echo "# Node" >> .gitignore