home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p6 / runErr < prev    next >
Text File  |  2005-11-18  |  250b  |  11 lines

  1. #!/bin/sh
  2. #
  3. # This is a version of run that does not show differences in the "out" files.
  4. #
  5. echo $1:
  6. java Main < tst/$1.pcat 1> tst/$1.out 2> tst/$1.err
  7. #diff -w tst/$1.out.bak tst/$1.out
  8. diff -w tst/$1.err.bak tst/$1.err
  9. rm tst/$1.out
  10. rm tst/$1.err
  11.