![]()
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/ksh
#cd.burn: burn existing wav files to an audio cd
export PATH=/bin:/usr/bin:/usr/local/bin
print_usage()
{
echo 'cd.burn: burn existing wav files to an audio cd'
echo 'Make sure that you are in the directory containing the wav files'
echo 'and type "cd.burn" -- it is as simple as that!'
echo 'To NOT delete the wav files afterwards, use "cd.burn -k"'
}
case $1 in
-h) print_usage; exit 1;;
esac
# put cd data
cdrecord -overburn -eject dev=1,3,0 -speed=4 -pad -audio *.wav
case $1 in
-k) ;;
*) rm *.wav ;;
done
echo "Fertig!"
exit 0