repo.or.cz
/
gss-tcad.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
more fix on Ec/Ev.
[gss-tcad.git]
/
bin
/
gssui
blob
db971b1dbc66850c4d8aa05d0d4752b7687f1434
1
#!/bin/sh
2
3
GUI
=
""
4
5
if
test -f
$GSS_DIR
/
bin
/
gui.tcl
;
then
6
GUI
=
$GSS_DIR
/
bin
/
gui.tcl
7
fi
8
9
if
test -z
"
$GUI
"
;
then
10
echo
"Error: GUI tcl script not found"
11
exit
1
12
fi
13
14
15
if
test
"
$#
"
=
0
;
then
16
exec
wish
$GUI
17
else
18
exec
wish
$GUI
"$@"
19
fi