# tool to convert UtF-8 + newline to SJIS + CRLF
# usage: port2dos file-extention directory-to-save

for f in *.$1
do
	nkf -s -Lw $f > $2/$f
done
