#!/bin/sh

if [ -w ../OUT ] ; then
	LP=../OUT
else
	echo "cannot find output file!" 1>&2
fi

sed -e 's/^/lp: /g' > $LP

