/usr/share/gcin/script/tsin-gtab-edit is in gcin-data 2.7.6.1+dfsg-1ubuntu1.
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 19 | #!/bin/bash
cd ~/.gcin
f=$1.append.gtab.tsin-db
echo $f
if [ ! -f $f ]; then
f=$1.tsin-db
echo $f
if [ ! -f $f ]; then
echo "No $1.*.gtab.tsin-db exist"
exit 0
fi
fi
fsrc=$f.src
$GCIN_BIN_DIR/tsd2a32 $f > $fsrc
$UTF8_EDIT $fsrc
$GCIN_BIN_DIR/tsa2d32 $fsrc $f
|