/usr/bin/transcriber is in transcriber 1.5.1.1-10.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/bin/sh
# RCS: @(#) $Id: trans.in,v 1.6 2003/11/13 16:14:11 barras Exp $
TRANSPATH=`dirname $0`/../lib
TCLLIBPATH=$TRANSPATH; export TCLLIBPATH
# Choose batch (foreground) or interactive (background) mode
bg=1
for i do
if [ "$i" = "-export" -o "$i" = "-convertto" -o "$i" = "-help" -o "$i" = "-h" -o "$i" = "-version" -o "$i" = "-v" ]; then
bg=0
fi
done
if [ $bg = 1 ] ; then
exec /usr/bin/wish8.5 /usr/share/tcltk/transcriber/tcl/Main.tcl -- ${1:+"$@"}
else
exec /usr/bin/tclsh8.5 /usr/share/tcltk/transcriber/tcl/Main.tcl -- ${1:+"$@"}
fi
|