nsbin/show_calendar
Nico Schottelius 201938181c use .calendar instead of calendar
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
2010-07-25 00:49:25 +09:00

28 lines
560 B
Bash
Executable file

#!/bin/sh
#
# Nico Schottelius
# Date: 13-May-2003
# Last Modified: 2004-09-06
# usage: show_calendar <date> [date]
# Format: DD.MM., DD.MM.YYYY
# add $CALDIR/files:
# -----------------------
# cat $CALDIR/test
# 01.09: auto ansehen..
# -----------------------
#
CALDIR=~/.calendar
if [ $# -lt 1 ]; then
echo `basename $0` 'day.month [day.month.year]'
exit 1
fi
cd $CALDIR
for file in *; do
for date in $@ TO.DO; do
#egrep --with-filename -A 2 -e "^${date}[:\.]" "$file"
egrep --with-filename -A 2 -e "^${date}:" "$file"
done
done