Linux 常會需要寫 Shell script,但是遇到問題 Debug 還蠻麻煩的,要怎麼開啟 Debug mode (trace mode)
可以使用 -x 來協助 Debug
- /bin/sh -x # xtrace
- /bin/bash -x # Print commands and their arguments as they are executed.
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
Linux 常會需要寫 Shell script,但是遇到問題 Debug 還蠻麻煩的,要怎麼開啟 Debug mode (trace mode)
可以使用 -x 來協助 Debug