This file is indexed.

/usr/bin/xfig is in xfig 1:3.2.5.c-7.

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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh
#
# $Id: xfig-wrapper,v 1.3 2015/09/19 07:35:00 roland Exp $
#
##########################################################################
#
# xfig-wrapper is a little shell script, which tries to work around the
# missing UTF-8 capabilities of xfig.
# For this it allows to use the content of environment variable XFIG_LC_CTYPE
# as LC_CTYPE.  If this is not set, it checks whether you use a UTF-8 locale.
# If this is the case, it tries to strip UTF-8 from the locale and checks,
# whether the result is defined.
#
##########################################################################
#
#   Copyright (C) 2015  Roland Rosenfeld <roland@spinnaker.de>
#
#   This program is free software; you can redistribute it and/or
#   modify it under the terms of the GNU General Public License as
#   published by the Free Software Foundation; either version 2 of
#   the License, or (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
#   General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
#
##########################################################################

if [ "x$XFIG_LC_CTYPE" != "x" ]
then
    # user defined XFIG_LC_CTYPE
    LC_CTYPE=$XFIG_LC_CTYPE
    export LC_CTYPE
else
    if [ $(locale charmap) = "UTF-8" ]
    then
	CTYPE=$(locale | grep ^LC_CTYPE)
	CTYPE=${CTYPE#LC_CTYPE=}
	CTYPE=${CTYPE#\"}
	CTYPE=${CTYPE%\"}
	CTYPE=${CTYPE%.[uU][tT][fF]*8} # strip utf8
	if locale -a | grep -q "^$CTYPE\$"
	then
	    LC_CTYPE=$CTYPE
	    export LC_CTYPE
	else
	    echo "no non-UTF-8 locale found, try setting XFIG_LC_CTYPE, if you have trouble with your charset"
	fi
    fi
fi	

/usr/lib/xfig/xfig "$@"