Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我想知道我的陈述是如何被扩展和解释的bash,我应该如何行动?
bash
在你的脚本里面
set -x
开始调试和
set +x
停止调试模式。这样,您可以只调试脚本的一部分而不是所有的东西。
尝试调试模式:
bash -x script_name
只是猜测你的意思。试试set -v。
set -v