no commit name

This commit is contained in:
Luke Smith 2018-10-17 10:56:46 -04:00
parent ac3706357f
commit efcf9c263f
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252
1 changed files with 2 additions and 6 deletions

8
lb
View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
# Set your personal data here:
rssfile="rss.xml"
@ -10,12 +10,8 @@ author="<a href=\"$website\">Luke Smith<\/a>"
dir=$(pwd)
draftdir="$dir"/blog/.drafts
blogdir="$dir"/blog
# Set vi if $EDITOR not set
if [ -z $EDITOR ];
then EDITOR="vi";
fi;
[ -z $EDITOR ] && EDITOR="vi";
# See other variables defined later, such as `header` and `webdate` for more customizability.
getHelp() { \