This file is indexed.

/usr/share/games/flightgear/Phi/mkthemes.sh is in flightgear-phi 2016.4.2+dfsg1-1.

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
#!/bin/bash

echo "["
THEMES=`ls 3rdparty/jquery-ui-themes-1.11.2/themes/`
set -- $THEMES
while [ $# -gt 0 ]; do
echo "{"
echo "\"theme_name\": \"$1\","
echo "\"theme_url\": \"3rdparty/jquiery-ui-themes-1.11.2/themes/$1/jquery-ui.css\","
echo "\"group\": \"Official\","
echo "\"active\": \"yes\","
echo "\"author\": \"jQuery Project\","
echo "\"license\": \"http://jquery.org/license\""
echo "},"
  shift
done
echo "]"