blob: c60edd2191660bd0d9ed00da4fc214339d37c2d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Updates the training/general page of the website for the day.
# To do this, an entry is added in trk/training and then is copied over into
# the website, formatted correctly, and a commit made.
ORIGIN="$(orgdresolv "ORGD_TRK_PATH")"/training
DEST="$BLOG_PATH/training/general.html"
ws-replace "<!-- training:begin -->" "<!-- training:end -->" "$ORIGIN" "$DEST" "Training" "txt" "training-format-table" "$(date +"%Y-%m")"
|