ex54.sh
来自「Shall高级编程」· Shell 代码 · 共 14 行
SH
14 行
#!/bin/bashexec echo "Exiting \"$0\"." # Exit from script here.# ----------------------------------# The following lines never execute.echo "This echo will never echo."exit 99 # This script will not exit here. # Check exit value after script terminates #+ with an 'echo $?'. # It will *not* be 99.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?