Skip to content
daniel@MacBookPro:~

tag

#debugging

5 posts

Shell & TerminalHow-To September 23, 2026 3 min read

How to Debug Shell Scripts With set -x and ShellCheck

A complete walkthrough of the two genuinely essential shell scripting debugging tools — one that traces exactly what a script actually executes, and one that catches whole categories of bugs before the script ever runs.

#howto#debugging#shellcheck
Read more
LinuxHow-To March 18, 2026 3 min read

How to Debug a Program on Linux with strace

A complete walkthrough using strace to see exactly which system calls a misbehaving program is making — often the fastest way to diagnose a problem with no useful log output at all.

#howto#strace#debugging
Read more