mirror of
https://githubfast.com/mhwikicn/mh.git
synced 2025-01-23 09:10:38 +08:00
7 lines
140 B
Batchfile
7 lines
140 B
Batchfile
@echo off
|
|
chcp 65001
|
|
for %%i in (*.htm) do (
|
|
"C:\Program Files (x86)\GnuWin32\bin\iconv.exe" -f SHIFT_JISX0213 -t UTF-8 %%i > o\%%i
|
|
)
|
|
pause
|