📄 self-destruct.sh
字号:
#!/bin/bash# self-destruct.shkill $$ # Script kills its own process here. # Recall that "$$" is the script's PID.echo "This line will not echo."# Instead, the shell sends a "Terminated" message to stdout.exit 0 # Normal exit? No!# After this script terminates prematurely,#+ what exit status does it return?## sh self-destruct.sh# echo $?# 143## 143 = 128 + 15# TERM signal
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -