Project

General

Profile

1 88 aaronmk
#!/bin/bash
2
# Sets the correct test output to be the generated test output
3
# Usage: self file
4
5
selfDir="$(dirname -- "$0")"
6
cd "$selfDir"
7
8
file="$(basename -- "$1")"
9 103 aaronmk
cp -p "output/$file" "accepted_output/$file"