This file is indexed.

/usr/src/castle-game-engine-4.1.1/x3d/doc/x3d_nodes/run_x3d_nodes_spec_to_pascal.sh is in castle-game-engine-src 4.1.1-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
#!/bin/bash

for F in 2/*.txt; do
  echo "---- $F";
  BBB=`basename "$F" .txt`
  x3d_nodes_spec_to_pascal "$BBB" < "$F" > x3d_`stringoper LowerCase "$BBB"`.inc
done