#!/bin/sh
# WHAT'S NEW?  Run with an integer argument that corresponds to the number
# of days since last change.  For example: ./WhatsNew.sh 1

find . -mtime -$1 -type f | grep -v Install | grep -v '.[oda]$' | grep -v .dir | grep -v '~$' | grep -v SunWS | grep -v Templates.DB | sort
