I have this command which gives a tidy sorted output of what's up and coming of tasks: rem -n -b2 | sed 's/.*(..-.. .*)/1/g' | sed 's/ at//g' | sort -n -k1 This however does not include recurring tasks like weekly meetings. Is it a way to achieve this as well? Jostein