はやく誰かrecfriioみたいに
B25オプションをドライバーに付けてくれないだろうか。
#!/bin/csh
echo ""
echo "recpt1 録画するチャンネル 録画秒数 出力先ファイル名"
/usr/local/bin/recpt1
echo ""
echo "Input CH-No"
set ch = $<
echo ""echo "Input Time(s)"
set t = $<
echo ""
set file = `date +%F-%H-%M-%S`-ch`echo "$ch"`
echo ""echo "$file"
echo ""
/usr/local/bin/recpt1 $ch $t $file.t
echo ""
echo "暗号解除を実行しますか?"
echo "y or n"
set yn = $<
if ( "$yn" == y ) then
b25 $file.t $file.ts
endif
echo "録画ファイルを再生しますか?"
echo "y or n"
set yn1 = $<
if ( "$yn1" == y ) then
gmplayer $file.ts
exit
endif
echo "Have a good time!"
Comments