1
0
Files
epfl_cs451/template_cpp/run.sh
Athanasios Xygkis d52d4fc3a9 Add C/C++ template
2020-09-14 08:56:58 +02:00

10 lines
240 B
Bash
Executable File

#!/bin/bash
# Change the current working directory to the location of the present file
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
ret=0
exec 3>&1; $("$DIR"/bin/da_proc "$@" >&3); ret=$?; exec 3>&-
exit $ret