nsbin/check_termine
Nico Schottelius d3c6e29902 Initial commit
2006-07-20 09:54:37 +02:00

15 lines
283 B
Bash
Executable file

#!/bin/sh
#
# Nico Schottelius
# Date: 18-Feb-2003
# Last Modified: 15-September-2003
# displays the things you got todo.
#
CALDIR=~/calendar
cd $CALDIR
for file in *; do
egrep --with-filename -A 2 "^`date +%d.%m:`" "$file"
egrep --with-filename -A 2 "^TO.DO:" "$file"
done