#!/bin/sh

# Put an extra newline at the top of the file
TMP=`mktemp`
(echo; cat "$1") > "$TMP"
mv "$TMP" "$1"
