7 lines
149 B
Text
7 lines
149 B
Text
|
#!/bin/sh
|
||
|
if [ x${SOLARENV}x = xx ]; then
|
||
|
echo No environment found, please use 'configure'
|
||
|
exit 1
|
||
|
fi
|
||
|
exec perl -w $SOLARENV/bin/cws.pl "$@"
|