首页 > 其他 > 详细

exit命令

时间:2019-08-21 21:07:04      阅读:107      评论:0      收藏:0      [点我收藏+]

 

exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。

常用参数
格式:exit n
退出。设置退出码为n。(Cause the shell to exit with a status of n.)

格式:exit
退出。退出码不变,即为最后一个命令的退出码。(If n is omitted, the exit status is that of the last command executed. )

格式:$?
上一个命令的退出码。

格式:trap "commands" EXIT
退出时执行commands指定的命令。( 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 信号产生

 

参考:

https://www.cnblogs.com/itcomputer/p/4157859.html

 

exit命令

原文:https://www.cnblogs.com/sea-stream/p/11390754.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!