Strange output in cmd while batch file is running

后端 未结 1 1771
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-24 09:39

I have that script in batch file:

cd C:\\TESTS\\front-tests
call git pull
cd C:\\TEST\\front-tests\\AutoApp\\bin\\debug
start AutoApp.exe

And g

相关标签:
1条回答
  • 2021-01-24 09:50

    The batch file is saved as utf-8 BOM prefixed. What you see as the cd prefix is the byte order mark.

    Save the file as ANSI or utf-8 without BOM to make it work.

    0 讨论(0)
提交回复
热议问题