![]()
Linux, Unix, /etc/$ To set up this Linux system, do I really have to type long,
cryptic, frequently inconsistent and undocumented commands with
occasional long strings of hex digits?
# Yeah. You got a problem with that?
|
Sponsored links (requires javascript):
#!/bin/sh
#cd.video: burn an avi file as iso image to cdrom; can also be used to
#burn any sort of iso image e.g. collection of mp3s
case $# in
0) exit 1 ;;
esac
isofile=$HOME/file.iso
mkisofs -l -o $isofile "$@"
sudo cdrecord dev=$BURNER -overburn -tao -v -eject -speed=4 $isofile
if [ $? -eq 0 ];
then
rm $isofile
fi
exit 0