#!/bin/sh
# Find files created or modified less than 1 day ago

find . -mtime -1 -print
