将UNIX风格的路径转换为Windows
我的BASH脚本与Linux,Mac和Windows(带有Git Bash)上的BASH脚本相同。
仅在Git Bash运行时,如何才能确保将路径转换为Windows式路径?
java -classpath "./path-1/subdir:./path-2" com.example.Main
I have the same Bash script that I am running on Linux, Mac, and Windows (with Git Bash).
How can I make sure that the path is converted to a Windows-style path ONLY if running in Git Bash?
java -classpath "./path-1/subdir:./path-2" com.example.Main
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以测试存在
:cygpath.exe
但是,请首先检查是否需要转换:在Bash Shell脚本(即使使用Windows Bash的Git)中,调用脚本/可执行文件时,Unix风格的路径也可以正常工作。但是,随着论点的传递,字符串通过。
You can test for the presence of
cygpath.exe
:But check first if you even need that conversion: in a bash shell script (even with Git For Windows bash), a Unix-style path will work when calling scripts/executables. However, strings passed as arguments are passed as-is.