This file is indexed.

/usr/bin/arm is in tor-arm 1.4.5.0-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
#!/bin/sh
if [ "$0" = /usr/bin/arm ]; then
  arm_base=/usr/share/arm/
else
  arm_base=$( dirname "$0" )/src/
fi

python "${arm_base}prereq.py" $*

if [ $? = 0 ]; then
  exec python -W ignore::DeprecationWarning "${arm_base}starter.py" $*
fi