This file is indexed.

/usr/share/cli-common/gac-package-remove is in cli-common 0.9+nmu1.

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

for file in /usr/share/cli-common/runtimes.d/*
  do	
  if [ -x $file ]; then
      # Figure out the formal name
      F="$($file name)"

      # Remove it
      echo "Removing $1 from $F"
      $file remove $1
  fi
done