c23bfc5a82
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
15 lines
283 B
Bash
Executable file
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
|