Start Local Jekyll Server and Open Safari Macro

Hey Cesare,

If you're running that in the Terminal then you might as well consolidate it some:

cd path/to/my/jekyll/website/folder; bundle exec jekyll serve; sleep 10; open -a Safari http://127.0.0.1:4000/

Note – you don't wan't a pipe after the first command – you want a command terminator (semi-colon).

-Chris