nsbin/old/check_termine
Nico Schottelius c23bfc5a82 reorganise more old stuff
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-12-28 20:13:28 +01: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