# Bash DEBUG 一行搞定

```bash
set -Eeuxo pipefail
```

* `-E` 让 `trap` 能够捕获函数内信号。
* `-e` 非零返回值终止执行。
* `-u` 读取不存在的变量会报错并停止执行。
* `-x` 执行前打印指令内容。
* `-o pipefail` 子命令失败将使管道返回非零并终止执行。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.wh2099.com/linux/bash-debug.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
