Files
BZJZ_Material/文档润色流和知识库构建流/claude-scholar/skills/bug-detective/references/debugging-tools.md
2026-06-11 03:33:14 +08:00

405 B

Debugging Tools

Python

python -m pdb script.py
python -m traceback your_script.py
pytest -x -vv tests/test_target.py

Node.js

node --inspect-brk app.js
node --trace-warnings app.js
npm test -- --runInBand

Git

git bisect start
git bisect bad
git bisect good <known-good-commit>

Shell

bash -n script.sh
bash -x script.sh
shellcheck script.sh