This file is indexed.

/usr/bin/a2j is in a2jmidid 8~dfsg0-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/sh
#
# This script accesses a2jmidid over dbus
# and behaves as a2jmidid in non-dbus mode
#

if test $# -eq 1 -a x$1 = x-e
then
    echo "hardware ports export"
    a2j_control ehw
else
    a2j_control dhw
fi

a2j_control start
trap "a2j_control stop; exit" INT TERM
read unused