Studentenversion des ESY6/A Praktikums "signal_processing".
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1234567891011121314 |
- #!/bin/bash
- script_path="$( dirname "$( readlink -f "${BASH_SOURCE[0]}" )" )"
-
- if [ $# -lt 1 ]
- then
- echo " usage: execute_and_highlight command arguments"
- exit 1
- fi
-
- cmd=$1
- shift 1
- $cmd $@ | $script_path/highlight_test_results.sh
- test ${PIPESTATUS[0]} -eq 0
-
|