有没有办法使用 Cygwin 运行 shell 脚本并为 java 命令使用正确的路径分隔符
我正在尝试使用 Cygwin 来测试将在 Linux 环境中运行的 Java 应用程序的启动脚本。
问题是当我指定 Bootclasspath 或 Classpath 时,我需要使用操作系统特定的路径分隔符“;” 对于 Windows,“:” 对于 Linux。 发生这种情况是因为 Java 仍然是本机 Windows 应用程序并使用本机操作系统路径分隔符 (Cygwin List路径分隔符 )
shell 脚本中是否有任何方法可以检测我所在的操作系统(或者如果我在 CYGWIN 中运行),并指定正确的路径分隔符。
我正在尝试设置以下内容:
MAVEN_OPTS="-Xbootclasspath/a:test/resources:live/resources"
在 Windows 上,它需要是: MAVEN_OPTS =“-Xbootclasspath / a:测试/资源;实时/资源”
I'm trying to use Cygwin to test startup scripts for a Java application that is going to run in a Linux environment.
The troule is when I specify a boothclasspath or Classpath I need to use OS specific path seperators ";" for windows, and ":" for Linux. This happens because Java is still a native windows application and uses the native OS path seperator (Cygwin List Path Seperator )
Is there any way in the shell script to detect what OS I'm on (or perhaps if I'm running in CYGWIN), and specify the proper path seperator.
I'm trying to set the following:
MAVEN_OPTS="-Xbootclasspath/a:test/resources:live/resources"
On Windows it would need to be:
MAVEN_OPTS="-Xbootclasspath/a:test/resources;live/resources"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这里找到答案:从 bash 脚本检测操作系统(使用 $OSTYPE)
Found an answer here: Detect OS from a bash script (Using $OSTYPE)
您可以使用
uname(1)
来测试您是否正在运行 Cygwin,例如:You can use
uname(1)
to test if you're running Cygwin, e.g.: