为什么从 cmd 文件调用 gem.bat 在第一次调用后会退出?
我在 Windows .cmd
文件中调用 gem
命令,但它在第一个命令后退出。什么给?
gem sources --add http://gems.github.com
gem install haml
I'm calling gem
commands in a Windows .cmd
file, but it exits after the first command. What gives?
gem sources --add http://gems.github.com
gem install haml
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gem
命令实际上是PATH
中的一个批处理文件。例如,C:\Ruby192\bin\gem.bat
。从批处理/cmd 文件中调用这样的批处理文件会在调用的批处理文件末尾自动退出整个会话。有一个特殊的命令可以返回调用batch/cmd 文件。在每次调用另一个批处理文件之前使用CALL
命令。The
gem
command is actually a batch file in yourPATH
. For example,C:\Ruby192\bin\gem.bat
. Calling a batch file like this from a batch/cmd file automatically exits the entire session at the end of the called batch file. There is a special command that returns to the calling batch/cmd file. Use theCALL
command before every call to another batch file.我通过
cmd.exe
调用第一个gem
命令解决了这个问题,但我仍然渴望听到关于正在发生的事情的解释。I solved it by calling the first
gem
command throughcmd.exe
, but I'm still keen to hear explanations of what is going on.