jrh at mustang.dell.com (James Howard) writes:
>touch /lost+found
>find /lost+found -mtime +14 -exec rm -rf {} \; >/dev/null 2>&1
... except that touch will create a FILE if the entity does not
already exist. Better to do something like:
if [ -d /lost+found ]; do
find ....
fi