2006-07-20 07:54:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Nico Schottelius
|
|
|
|
# Date: 13-May-2003
|
2012-03-06 09:58:12 +00:00
|
|
|
# Modified: 2004-09-06
|
|
|
|
# Modified: 2012-03-06
|
2006-07-20 07:54:37 +00:00
|
|
|
# usage: show_calendar <date> [date]
|
|
|
|
# Format: DD.MM., DD.MM.YYYY
|
|
|
|
# add $CALDIR/files:
|
|
|
|
# -----------------------
|
|
|
|
# cat $CALDIR/test
|
|
|
|
# 01.09: auto ansehen..
|
|
|
|
# -----------------------
|
|
|
|
#
|
|
|
|
|
2010-07-24 15:49:25 +00:00
|
|
|
CALDIR=~/.calendar
|
2006-07-20 07:54:37 +00:00
|
|
|
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
echo `basename $0` 'day.month [day.month.year]'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-03-06 09:58:12 +00:00
|
|
|
grep_param="-e ^TO.DO:"
|
|
|
|
for arg in "$@"; do
|
|
|
|
grep_param="${grep_param} -e ^${arg}:"
|
2006-07-20 07:54:37 +00:00
|
|
|
done
|
2012-03-06 09:58:12 +00:00
|
|
|
|
|
|
|
find "$CALDIR" -type f -exec egrep --with-filename -A 2 "$grep_param" {} \;
|