#!/bin/sh

# Find files newer than last find

touch new_timestamp
find . -newer timestamp -print >new_files
mv new_timestamp timestamp
