This file is indexed.

/usr/share/amsn/plugins/music/infoexaile is in amsn-data 0.98.9-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/bash

EXAILE=`ps -e | grep [e]xaile | grep -v info`
if [ "$EXAILE" ]
then
	exaile -q 2>/dev/null | sed 's/status:\ //g' | sed 's/\ self:\ /\n/g' \
	| sed 's/\ artist:\ /\n/g' | sed 's/\ album:\ /\n/g' \
	| sed 's/\ length:\ /\n/g' | sed 's/\ position:\ /\n/g'
else
	echo 0
fi
exit 0