16 lines
397 B
Bash
Executable File
16 lines
397 B
Bash
Executable File
#!/bin/sh
|
|
# STTA Rev. 1.3 Copyright (c) 2001-2004 Jesús Pérez Lorenzo --- license GNU GPL
|
|
# stta: (@#) 1.31051043346- [2004_01_29_102036]
|
|
# Runner to call TTA Perl ttasess
|
|
|
|
STTA_TOOLSDIR="/opt/tarantella/tools"
|
|
[ -x $STTA_TOOLSDIR/setenv_vars ] && . $STTA_TOOLSDIR/setenv_vars
|
|
|
|
TTAsessCMD=ttasess.pl
|
|
|
|
# move to TTAsessPath otherwise libs.pl will be not loaded
|
|
|
|
cd $STTA
|
|
|
|
exec ./$TTAsessCMD $*
|