commit | a8fc3c78d9d137f4468d89c76b95412a66b0ed18 | [log] [tgz] |
---|---|---|
author | Mark Szymanski <mrman208@me.com> | 周一 11月 01 20:24:39 2010 -0500 |
committer | Mark Szymanski <mrman208@me.com> | 周一 11月 01 20:24:39 2010 -0500 |
tree | 184e35034c9ab418f26f8cf616190bb6581d3228 | |
parent | db5a47eb684510714a81466b9b556538c32dcdd1 [diff] |
Added jekyll.plugins.bash file
diff --git a/plugins/jekyll.plugins.bash b/plugins/jekyll.plugins.bash new file mode 100644 index 0000000..31fb9a3 --- /dev/null +++ b/plugins/jekyll.plugins.bash
@@ -0,0 +1,12 @@ +newpost() { + + # Get the date for the new post's filename + + FNAME_DATE=$(date "+%Y-%m-%d") + + # Get the title for the new post + + read -p "Enter title of the new post: " POST_TITLE + + +}