home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / pascal-.zip / pascal- / try < prev   
Text File  |  1992-11-21  |  162b  |  10 lines

  1. #!/bin/sh
  2.  
  3. for f in `find tests -type f -print`
  4. do
  5.     echo $f
  6.     echo
  7.     pascal.exe $f > /dev/null
  8.     echo '======================================================='
  9. done
  10.