You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
478 B
15 lines
478 B
4 years ago
|
@ECHO OFF
|
||
|
REM Simple check of a stateful encoding.
|
||
|
REM Usage: check-stateful.bat SRCDIR CHARSET
|
||
|
|
||
|
if not exist %1\%2-snippet.alt goto ENDIF_1
|
||
|
..\src\iconv_no_i18n -f %2 -t UTF-8 < %1\%2-snippet.alt > tmp-snippet
|
||
|
fc %1\%2-snippet.UTF-8 tmp-snippet
|
||
|
:ENDIF_1
|
||
|
|
||
|
..\src\iconv_no_i18n -f %2 -t UTF-8 < %1\%2-snippet > tmp-snippet
|
||
|
fc %1\%2-snippet.UTF-8 tmp-snippet
|
||
|
..\src\iconv_no_i18n -f UTF-8 -t %2 < %1\%2-snippet.UTF-8 > tmp-snippet
|
||
|
fc %1\%2-snippet tmp-snippet
|
||
|
del tmp-snippet
|