#!/bin/sh
#
# NAME:  burn-multi
#
#  NOT FINISHED
echo "Burn 1st session to CD allowing for further sessions"
DEF="/d/pbcd.iso"
echo -n "Enter the full path to iso file: [$DEF] "
read ISO
if [ "$ISO" = "" ];then
   ISO=$DEF
fi
cdrecord -speed 4 -dev 0,0,0 -multi -data $ISO
