#!/bin/bash
# dummy passing all STDIN on to STDOUT and printing the command and arguments to STDERR
# commands appear in random order as each is executed in its own subshell
# alternatively set bash option -x to follow sequential execution of commands
>&2 echo "executed command:	tester ${@}"
tee
exit