This file is indexed.

/usr/bin/ppm2video is in gerris 20131206+dfsg-5.

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
27
28
#!/bin/bash

if test -z "`which avconv`"; then
    echo "ppm2video: error: could not find 'avconv'" > /dev/stderr
    exit 1
fi

command="avconv -f image2pipe -vcodec ppm -i - -y"
while test $# -gt 0; do
    command="$command $1"
    shift
done

if test -d "$TMPDIR" ; then
  log=`mktemp $TMPDIR/ppm2video.XXXXXX`
else
  log=`mktemp /tmp/ppm2video.XXXXXX`
fi

if $command 2> $log; then :
else
    cat $log > /dev/stderr
    rm -f $log
    exit 1
fi
rm -f $log

exit 0