This file is indexed.

/usr/bin/easy_eliza is in tempest-for-eliza 1.0.5-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
18
19
20
21
22
23
24
25
26
#!/bin/bash
# easy_eliza - wrapper script around tempest_for_eliza
#
# © 2010 Luke Faraone <luke@faraone.cc>
#
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; version 2 of the License, or (at your 
## option) any later version.
#
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
#

if [ $# -eq 1  ]; then
        monprops=(`xvidtune -show | tr 'x' ' ' | tr '"' ' '`)
        cmd="tempest_for_eliza $((`echo ${monprops[2]}|tr -d '.'`*10000)) ${monprops[0]} ${monprops[1]} ${monprops[6]} 10000000 $1"
        echo $cmd
        exec $cmd;
fi

echo "Please specify a path to a song. Example:"
echo "$ $0 /usr/share/doc/tempest-for-eliza/songs/forelise"
exit -1