''xterm -display @d' 中的 @d 是什么意思?
在 Windows XP 上运行的现有 .bat 脚本使用标志“-display @d”调用 xterm。我需要更改传递给 xterm 的显示值,以指向不同的 IP 地址。但是,了解 @d 目前代表什么并传入什么会有所帮助。
An existing .bat script running on Windows XP has a call to xterm with the flag '-display @d'. I need to alter the display value being passed through to xterm, to point to a different IP address. However, it would help to know what the @d currently stands for and passes in.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@d
是 Exceed 特定变量。您的主机名将被替换为
@d
以及:0.0
如果您想更改 @d 的值,您只需将其删除并替换为任何主机名或你想要的IP地址。
@d
is an Exceed specific variable.Your hostname will get substituted for the
@d
along with a:0.0
If you want to alter the value of @d you can just remove it and replace it with whatever hostname or IP address you want.