#!/bin/sh

fic = $1

while [ 1 ]; do
	ac97 78 c009
	ac97 74 0210
	dat=`date +%s`
	bat=`ac97 7a`
	echo "$dat:$bat" >> $fic
	sleep 30
done;

