This file is indexed.

/usr/share/bashburn/lib/func/bincuefunc.sh is in bashburn 3.0.1-1.

This file is owned by root:root, with mode 0o644.

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
burn_bincue()
{
    typeset bbspeed
    # cdrdao does not like speed being set to -1
    (( "${BBSPEED}" -eq -1 )) && bbspeed=8 || bbspeed=$BBSPEED

    shopt -s nocaseglob
    if ${BB_CDIMAGECMD} write --device \"${BBCDWRITER}\" \
	    --driver generic-mmc --speed \"${bbspeed}\" \
	    -v 2 --eject \
	    "${BBBURNDIR}"/$(ls \"${BBBURNDIR}\" | grep cue)
    then
	echo $bb_bincue_burn_1
    else
	echo $bb_bincue_burn_2
    fi
    shopt -u nocaseglob
    wait_for_enter
}