How about the following:
if find /some/dir/ -maxdepth 0 -empty | read v; then echo "Empty dir"; fi
This way there is no need for generating a complete listing of the contents of the directory. The read
is both to discard the output and make the expression evaluate to true only when something is read (i.e. /some/dir/
is found empty by find
).