当前消息!exit_0
2023-04-17 21:57:34
互联网
(资料图)
1、使脚本返回码为0,表示成功exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。
2、常用参数格式:exit n退出。
3、设置退出码为n。
4、(Cause the shell to exit with a status of n.) 格式:exit退出。
5、退出码不变,即为最后一个命令的退出码。
6、(If n is omitted, the exit status is that of the last command executed. ) 格式:$?上一个命令的退出码。
7、 格式:trap "commands" EXIT退出时执行commands指定的命令。
8、( A trap on EXIT is executed before the shell terminates.)退出码(exit status,或exit code)的约定:0表示成功(Zero - Success)非0表示失败(Non-Zero - Failure)2表示用法不当(Incorrect Usage)127表示命令没有找到(Command Not Found)126表示不是可执行的(Not an executable)>=128 信号产生。
本文到此分享完毕,希望对大家有所帮助。