Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 shell 脚本逐行和逐个命令地转换为批处理文件。但是,我似乎无法绕过以下线路。任何帮助表示赞赏。
OPTS="%OPTS -Dlog4j.configuration=file:.\log4j.properties"
我不知道 linux shell,但我认为等效的是:
Set "OPTS=-Dlog4j.configuration=.\log4j.properties"
然后你可以加载存储的...Options¿?像一个论点:
Start Application.exe %OPTS%
“.\”表示脚本的当前目录,请确保“file:.\”在 linux OS 中的含义相同。