Code Review
/
common
/
bash_it.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
db5a47e
)
Added jekyll.plugins.bash file
author
Mark Szymanski
<mrman208@me.com>
Tue, 2 Nov 2010 01:24:39 +0000
(20:24 -0500)
committer
Mark Szymanski
<mrman208@me.com>
Tue, 2 Nov 2010 01:24:39 +0000
(20:24 -0500)
plugins/jekyll.plugins.bash
[new file with mode: 0644]
patch
|
blob
diff --git a/plugins/jekyll.plugins.bash
b/plugins/jekyll.plugins.bash
new file mode 100644
(file)
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
+
+
+}