#!/bin/bash
if [ -N /some/directory/ ] ; then
echo "change"
else
echo "no change"
fiThe object is to identify changes within a directory. This tells me if there are any new or deleted files, but not if files within the directory are modified. Is there a trivial way to do it? -- SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/ Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html
