Skip to content

Instantly share code, notes, and snippets.

@sbentzen
Created December 16, 2011 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbentzen/1486089 to your computer and use it in GitHub Desktop.
Save sbentzen/1486089 to your computer and use it in GitHub Desktop.
Shell Script to Setup Jekyll
#
# jekyll.sh
#
# Use this inside the git repository or folder you want the jekyll site to be. Then, do what you do best and design and read documents on it.
#
# Created by Shaun Bentzen on 2011-12-16.
#!/bin/bash
git clone git://gist.github.com/1367098.git
mv 1367098/* ./
rm -rf 1367098
mkdir _includes
mkdir _layouts
touch _layouts/default.html
touch _layouts/post.html
mkdir _posts
touch index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment