我需要通过Linux脚本设置100个jar文件,所以我这样编写
回声结果是这样的
test/lib/xstream-1.3.1.jar:test/lib/test/lib/xpp3_min-1.1.4c.jar:test/lib/test/lib/xmlsec-1.4.1.jar:test/libtest/lib/xml-apis.jar
我的问题是在windows中jar文件将由分号定义,在linux中它显示冒号(:)这是正确的吗?
答案 0 :(得分:2)
您对路径分隔符的假设是正确的。
答案 1 :(得分:1)
CLASSPATH
与PATH
类似,其条目为separated by a semi-colon on Windows and a colon on other platforms。