#!/bin/sh

pwd	

for i in *.bas
do 
	echo $i
	../../../bin/basic2scriba $i > tmpfile
	mv -f tmpfile $i 
done
