# tool to convert UtF-8 + newline to SJIS + CRLF and replace TAB with two SPACEs
# usage: port2dos file-extention directory to save

for f in *.$1
do
	python ~/raspbuggy/delempty.py $f > $2/$f
done
