#!/bin/sh
# Removes a file if it's empty
# Usage: self file
if test -f "$1" -a ! -s "$1"; then rm "$1"; fi # regular file and not non-empty