This file is indexed.

/usr/bin/simpleburn-burning-suite is in simpleburn 1.6.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
#!/bin/bash

CDRECORD=`which cdrskin 2>/dev/null`
CDDA2WAV=`which cdparanoia 2>/dev/null || which cd-paranoia 2>/dev/null`
MKISOFS=`which xorriso 2>/dev/null`
CDRDAO=`which cdrdao 2>/dev/null`

if (($# == 0)); then
	echo "CDRECORD=$CDRECORD"
	echo "CDDA2WAV=$CDDA2WAV"
	echo "MKISOFS=$MKISOFS"
	echo "CDRDAO=$CDRDAO"
fi