runalltofile 158 B

12345678
  1. #!/bin/rc
  2. # Script to run all tests and output the results to file
  3. file=/tmp/runallresults.txt
  4. rm -f $file
  5. tests/runall >[2=1] > $file
  6. echo 'DONE' >> $file