知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

linux exit命令学习

发布时间:2014-09-05 13:48:00作者:知识屋

linux exit命令学习
 
linuxexitshell退出码
exit命令有两个作用:
1. 退出当前shell
sh-# exit
exit
INIT: Entering runlevel: 3
 
2. 在shell script中直接退出,这样我们写shell scripts时就可以借助于特定的
退出码来表示scripts的执行状况。
sh-# touch /test_exit.sh
sh-# cat /test_exit.sh
#!/bin/sh
exit 127
 
sh-# ls -l /test_exit.sh
-rwxr-xr-x 1 root root 24 Jan  1 00:04 /test_exit.sh
sh-# $?
sh: 0: command not found
sh-# /test_exit.sh
sh-# $?
sh: 127: command not found
sh-# echo "exit 126" > /test_exit.sh
sh-# cat /test_exit.sh
exit 126
sh-# /test_exit.sh
sh-# $?
sh: 126: command not found
sh-# vim
sh: vim: command not found
sh-# $?
sh: 127: command not found
 
关于退出码的约定:
通常0,表示命令执行成功;
非0,表示命令执行失败。
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜