| 12345678910111213141516171819 | #! /bin/sh# Do common operations before a particular test.mkdir tmp-$$cd tmp-$$case $srcdir in  /*|~*) ;;  *) srcdir=../$srcdir ;;esacout=err=echo $0 > checkingexec 1> stdoutexec 2> stderrPATH=..:../../src:$PATH
 |