12 lines
130 B
Bash
Executable File
12 lines
130 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if ! [[ -x wgrep ]]; then
|
|
echo "wgrep executable does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
../../tester/run-tests.sh $*
|
|
|
|
|
|
|