summaryrefslogtreecommitdiff
path: root/wr/evmnhol
blob: ef562049a2bdab584d4dfbec8984b7059adc99cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"