#!/bin/bash
#
# remove all files of zero bytes length from current directory
#
find . -type f -size 0 | xargs rm
#
#-------------------------------------------------------------------


