7 lines
202 B
Bash
Executable File
7 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# If there is already a cgal_test script in the current directory, execute it.
|
|
[ ! -x cgal_test ] && echo "No cgal_test in current directory, creating it" && create_cgal_test
|
|
|
|
./cgal_test $@
|