Ezekiel 13:1-16
This commit is contained in:
parent
6436cfa032
commit
1e045bf529
3 changed files with 46 additions and 6 deletions
10
justfile
10
justfile
|
@ -3,6 +3,10 @@ finish message:
|
|||
git commit -m "{{message}}"
|
||||
git push
|
||||
|
||||
create passage:
|
||||
cd content/bible_journal && cp _template.txt "{{passage}}.md"
|
||||
vi "content/bible_journal/{{passage}}.md"
|
||||
create book chapter v1 v2:
|
||||
#!/usr/bin/env bash
|
||||
set -euxo pipefail
|
||||
passage='{{book}}_{{chapter}}:{{v1}}-{{v2}}'
|
||||
cd content/bible_journal
|
||||
sed -e '/\$/{s/\$1/{{chapter}}/; s/\$2/{{v1}}/; s/\$3/{{v2}}/;}' -e "3s/{}/$(date +%Y-%m-%d)/" _template.txt > "${passage}.md"
|
||||
vi "${passage}.md"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue