22560ed4e7
without needing to set special environment variables, testing the 'sh' from PATH.
9 lines
80 B
Bash
9 lines
80 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
export SH="${SH:-sh}"
|
|
|
|
cd `dirname $0`
|
|
|
|
${SH} regress.sh
|