Windows shell字符串操作(将反斜杠改为斜杠)

发布于 2024-09-02 16:01:47 字数 154 浏览 7 评论 0原文

我需要编写一个脚本,该脚本采用当前路径(%~dp0),将反斜杠转换为正斜杠并将其进一步传递给某个命令。

由于环境的原因,我工作的唯一选择是 Windows shell(不是 Powershell,在 Powershell 中问题不会成为问题)。

有可能这样做吗?

I need to write a script that takes the current path (%~dp0), transforms backslashes into forward slashes and passes it further to some command.

Due to the environment I'm working in the only option that I have is windows shell (not Powershell where the issue would not a problem).

Is it even possible to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初雪 2024-09-09 16:01:47

set 命令具有替换功能:

set a=C:\test\dir
set a=%a:\=/%
echo %a%

结果:

C:/test/dir

The set command has a substitution feature:

set a=C:\test\dir
set a=%a:\=/%
echo %a%

Results in:

C:/test/dir
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文