| 
249
 | 
     1  | 
#!/bin/bash
  | 
| 
 | 
     2  | 
###set -e
  | 
| 
 | 
     3  | 
  | 
| 
 | 
     4  | 
trap "exit" INT
  | 
| 
 | 
     5  | 
  | 
| 
 | 
     6  | 
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
 | 
| 
 | 
     7  | 
  | 
| 
 | 
     8  | 
cp $DIR/* .
  | 
| 
 | 
     9  | 
  | 
| 
 | 
    10  | 
./postfix_test.sh output1
  | 
| 
 | 
    11  | 
  | 
| 
 | 
    12  | 
echo -e "Here is an automated test report for your work so far on assignment 9, Part 2.  Please note that this is not the mark for your work; it is provided only in the hope that it is useful in developing your solution.  Passing these tests does not guarantee your code is free from bugs: after the deadline, your code will be marked against a different, more thorough set of test cases.\n\n" > $1
  | 
| 
 | 
    13  | 
  | 
| 
 | 
    14  | 
  | 
| 
 | 
    15  | 
cat output1 >> $1
  | 
| 
 | 
    16  | 
  |