/usr/share/doc/wodim/examples/burnstuff is in wodim 9:1.1.11-2ubuntu2.
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 | #!/bin/sh
# (C) Eduard Bloch, License: BSD, 3-clause
# very simple script to burn files on-the-fly in SAO mode;
# either from a certain directory, or from a list with graft-points
# ISO name is generated from the basename of the list/directory
set -e
case "$1" in
*.list)
name=${1%.list}
set -- -D -graft-points -path-list "$1"
;;
*)
name="$1"
;;
esac
MOPTS=${MOPTS:-" -joliet-long -r -q -f -V $name "}
COPTS=${COPTS:-" fs=64m gracetime=5 -v -sao speed=16 -eject -multi -v -force - "}
SIZE=$(genisoimage $MOPTS -print-size "$@")s
echo "genisoimage $MOPTS $@ | wodim tsize=$SIZE $COPTS"
genisoimage $MOPTS "$@" | wodim tsize=$SIZE $COPTS
|