if [ ! -s /path/to/file ]; then
echo "file is blank or zero bytes"
echo "
fi
Use -s to check if it's larger than 0 bytes, I like to use the ! (not) operator to do this as shown above.
bash, bytes, sizeif, echo, quot, fi, larger, operator,