diff --git a/plan-of-week b/plan-of-week new file mode 100755 index 0000000..90b8210 --- /dev/null +++ b/plan-of-week @@ -0,0 +1,28 @@ +#!/bin/sh +# Nico Schottelius +# 2014-06-08 +# Show the plan of the week + + +if [ "$#" -ne 1 ]; then + echo "$0 " + exit 1 +fi + +dir=$1; shift + +start=1 +end=7 + +day=$start + +while [ "$day" -le "$end" ]; do + date="$(date +%F -d "$day days")" + file="$HOME/privat/persoenlich/notizen/$date" + + if [ -f "$file" ]; then + echo "$date" + cat "$file" + fi + day=$((day+1)) +done