#!/bin/sh

if [ X$1 = X-n ]
then
	shift
	exec echo "$@"
fi

exec "$@" | sed '/READ/d; /WRITE/d; /DUPLEX/d; /EDIT.FIELD/d; /SUPPRESS/d'
