This file is indexed.

/usr/share/amsn/plugins/music/infojuk 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
13
14
15
16
17
#! /bin/sh
# Shell script to get informations about the current song playing in Juk

#Juk is launched ?
JUK=`ps -e | grep juk | grep -v info`
if [ -n "$JUK" ]
then
	#Yes so we get the info
	dcop juk Player status
    dcop juk Player playingString
	dcop juk Player currentFile
else
	#No so we set to state stopped
	echo 0
fi

exit 0