if find "${DIR}" -prune ! -empty -exit 1; then
echo Empty
else
echo Not Empty
fi
EDITAR: Creo que esta solución funciona bien con gnu find, después de un rápido vistazo a la implementación . Pero esto puede no funcionar con, por ejemplo, el hallazgo de netbsd . De hecho, ese usa el campo st_size de stat (2). El manual lo describe como:
st_size The size of the file in bytes. The meaning of the size
reported for a directory is file system dependent.
Some file systems (e.g. FFS) return the total size used
for the directory metadata, possibly including free
slots; others (notably ZFS) return the number of
entries in the directory. Some may also return other
things or always report zero.
Una mejor solución, también más simple, es:
if find "${DIR}" -mindepth 1 -exit 1; then
echo Empty
else
echo Not Empty
fi
Además, la -prune en la primera solución es inútil.
EDITAR: no -exit para gnu find ... la solución anterior es buena para el hallazgo de NetBSD. Para GNU find, esto debería funcionar:
if [ -z "`find \"${DIR}\" -mindepth 1 -exec echo notempty \; -quit`" ]; then
echo Empty
else
echo Not Empty
fi