Windows bat 文件如何验证命令的输出
我想验证 Windows (XP) 计算机上的安装。所以我想创建一个可以完成这项工作的 .bat 文件。
我想验证像这样的命令
jruby --版本
并回显“OK”(如果它给出合理的输出)。那么在伪代码中:
if( `jruby --version`.startsWith("jruby 1.5.6") then
echo "OK"
else
echo "FAIL: Jruby not working!"
关于如何在 bat 文件中进行比较有什么想法吗?
I want to verify an installation on a windows (XP) machine. So i want to create a .bat file that does the work.
I want to verify commands like
jruby --version
and echo "OK" if it gives reasonable output. So in pseudocode:
if( `jruby --version`.startsWith("jruby 1.5.6") then
echo "OK"
else
echo "FAIL: Jruby not working!"
Any ideas on how to make that comparison in a bat file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)