#!/usr/bin/awk -f

BEGIN {
	EOT = ENVIRON ["PAEXEC_EOT"]
}

{
	# Prepand every line with a space in order
	# to avoid empty lines on output
	printf " "

	# Single-line output
	print toupper($0)

	# End of task marker, empty line by default
	print EOT

	# In the end, stdout must be flushed
	fflush()
}
