📄 ex54.sh
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -