#! /bin/sh

# Pass the BOM file through awk to ignore the size & checksum fields.
#
# Input BOM read from stdin.  Massaged BOM written to stdout.

awk '
{
	$1 = $1		# to force conversion to OFS even if $5 not present
	$5 = "XXX"
	$6 = "XXX"
	print $0
}'
