summaryrefslogtreecommitdiff
path: root/wr/evmnhol
diff options
context:
space:
mode:
Diffstat (limited to 'wr/evmnhol')
-rwxr-xr-xwr/evmnhol16
1 files changed, 16 insertions, 0 deletions
diff --git a/wr/evmnhol b/wr/evmnhol
new file mode 100755
index 0000000..ef56204
--- /dev/null
+++ b/wr/evmnhol
@@ -0,0 +1,16 @@
+#!/bin/sh
+# evmnhol
+# First set EVMNHOL_DIR as the directory in $HOME/docs/wr/lle/hol/ to write to,
+# then run evmnhol with the date you want to write to.
+
+
+if [ -z "$EVMNHOL_DIR" ] ; then echo "EVMNHOL_DIR is not set"; return; fi
+if [ -z "$1" ] ; then echo "You need to pass a date"; return; else DT="$1" fi
+if [ ! -d "$HOLIDAY/$EVMNHOL_DIR" ] ; then echo "$HOLIDAY/$EVMNHOL_DIR does not exist"; return; fi
+
+# TODO: add logic to verify the date using md. But check md actually
+# exists first. Use date +%s -d "$(cat md | grep begin | cut -d'=' -f2)"
+
+mkdir -p "$HOME/docs/wr/lle/$(date +%Y-%m -d $DT)"
+wr "lle/$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt"
+ln -s "../../$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt" "$HOLIDAY/$EVMNHOL_DIR/H$(date --iso-8601 -d $DT).txt"