File: cecilia

package info (click to toggle)
cecilia 2.0.5-2.2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 4,452 kB
  • ctags: 833
  • sloc: tcl: 9,786; sh: 1,097; makefile: 69; csh: 13
file content (28 lines) | stat: -rwxr-xr-x 801 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
# Cecilia 
#
#      Started by Stephen Burgess for version 2.0.4
#
#      Edited by Hans-Christoph Steiner
#      $Id $
#
# this script avoids installation-specific problems, 
# like wrong wish path in tcl file

if [ -x /Applications/Utilities/Wish\ Shell.app/Contents/MacOS/Wish\ Shell ]; then
    WISH=/Applications/Utilities/Wish\ Shell.app/Contents/MacOS/Wish\ Shell
elif [ -x /Applications/Wish\ Shell.app/Contents/MacOS/Wish\ Shell ]; then
    WISH=/Applications/Wish\ Shell.app/Contents/MacOS/Wish\ Shell
elif [ -x /sw/bin/wish ]; then
    WISH=/sw/bin/wish
elif [ -x /usr/local/bin/wish ]; then
    WISH=/usr/local/bin/wish
elif [ -x /usr/bin/wish ]; then
    WISH=/usr/bin/wish
else
    WISH=wish
fi

echo Wish Shell: $WISH
echo Cecilia Tcl Launcher: ${0}-tcl
"$WISH" ${0}-tcl "$@"