This file is indexed.

/usr/bin/simpleburn-abort-operation 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
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

pid=$1

if [ -z $pid ]; then
	echo "usage: $0 simpleburn-operation-pid"
	echo "example: $0 12345"
	exit
fi


pslist=""
function listps () {
	pid=$1
	
	pslist="$pid $pslist"
	for ppid in `pgrep -P $pid`; do
		listps $ppid
	done
}
listps $pid

echo "kill $pslist"
kill $pslist