マスタエディタ出力チェッカ:一部バッチファイルの日本語表示を英語表示に変更。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@374 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2009-07-09 08:23:51 +00:00
parent 59fb67c68c
commit e1610f1f67

View File

@ -15,8 +15,8 @@ rem
set usage=USAGE: %~nx0 INPUT_FILE...
if ""%1"" == """" (
echo %usage%
echo 使用方法が間違っています。
echo SRLもしくはXMLをドラッグアンドドロップしてください。
echo Illegal usage.
echo Drag and drop the SRL/XML.
echo.
goto end
)
@ -32,14 +32,14 @@ set input_file=%~dpnx1
rem 処理本体
echo.
echo %~nx1をチェックします。
echo check %~nx1
echo.
fc /B "%org_file%" "%input_file%"
if not %ERRORLEVEL% == 0 (
echo 異なるファイルです。
echo *** Different files. ***
) else (
echo 相違はありません。
echo No difference.
)
rem 入力ファイルが残っているならbeginに戻る
@ -49,5 +49,5 @@ if ""%1"" neq """" goto begin
rem 終了 (キー入力待ち)
:end
echo.
echo すべてのチェックが終了しました。
echo All check end.
pause