runallandshutdown 183 B

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