#!/bin/sh

# add CR (\r) before LF (\n), you should edit this file under emacs with Unix
# file mode to see the ^M (CR) in the sed line (to see it use less)

sed -e 's/^\(.*\)/\1
/' $*

