なんだこれは

はてなダイアリーから移転しました。

1100-01-01から1ヶ月間の記事一覧

burn cd from directory by shell script

Mac

#!/bin/sh # burn CD from some dir # Time-stamp: <06/07/17 19:40:17 fu7mu4> Source=${1-"--help"} Num=${2-1} #echo $Num if [ -d "$Source" ] then ScriptFile=`basename $0` ISOFile=$Source.iso if [ -e $ISOFile ] then /bin/rm -i $ISOFile || exit…