Questions tagged «exit-code»

程序在终止时用信号通知退出代码,以指示它是否成功完成,或者如果没有成功完成,则发生哪种故障情况。




10
Linux中是否有任何标准的退出状态代码?
如果进程的退出状态为0,则认为该进程已在Linux中正确完成。 我已经看到,分段错误通常会导致退出状态为11,尽管我不知道这仅仅是我工作的惯例(失败的应用程序都是内部的)还是标准的。 Linux中是否有用于进程的标准退出代码?

12
Python中的退出代码
我收到一条消息说script xyz.py returned exit code 0。这是什么意思? Python中的退出代码是什么意思?那里有多少?哪些重要?
207 python  exit-code 


3
什么是线程退出代码?
调试时“输出”窗口中的线程退出代码到底是什么?它给我什么信息?它以某种方式有用吗,还是只是一个不应该打扰我的内部东西? The thread 0x552c has exited with code 259 (0x103). The thread 0x4440 has exited with code 0 (0x0). 是否存在某种可能的退出代码列表及其重要性?

5
红宝石系统命令检查退出代码
我在ruby中有很多系统调用,例如以下代码,我想同时检查它们的退出代码,以便在该命令失败时退出我的脚本。 system("VBoxManage createvm --name test1") system("ruby test.rb") 我想要类似的东西 system("VBoxManage createvm --name test1", 0) <-第二个参数检查退出代码并确认该系统调用成功,否则,将引发错误或执行类似操作。 那有可能吗? 我已经尝试了一些类似的方法,但是也没有用。 system("ruby test.rb") system("echo $?") 要么 `ruby test.rb` exit_code = `echo $?` if exit_code != 0 raise 'Exit code is not zero' end
106 ruby  command  exit  exit-code 

5
为什么我的PowerShell退出代码始终为“ 0”?
我有一个PowerShell脚本,如下所示 ##teamcity[progressMessage 'Beginning build'] # If the build computer is not running the appropriate version of .NET, then the build will not run. Throw an error immediately. if( (ls "$env:windir\Microsoft.NET\Framework\v4.0*") -eq $null ) { throw "This project requires .NET 4.0 to compile. Unfortunately .NET 4.0 doesn't appear to be installed …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.