# 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
	nkf -s -Lw $f | ./t2s >$2/$f
done
