/usr/bin/simpleburn-blank-media 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 | #!/bin/bash
blanktype=$1
cdwriter=$2
if [ ! -b "$cdwriter" ]; then
echo "usage: $0 all|fast cdwriter"
echo "example: $0 fast /dev/sr0"
exit
fi
if mount | grep -q "^$cdwriter "; then
umount $cdwriter || exit 255
fi
source simpleburn-burning-suite quiet
$CDRECORD gracetime=3 blank=$blanktype dev=$cdwriter
status=$?
exit $status
|