this post was submitted on 24 Jul 2024
10 points (91.7% liked)

Linux 101 stuff. Questions are encouraged, noobs are welcome!

1026 readers
1 users here now

Linux introductions, tips and tutorials. Questions are encouraged. Any distro, any platform! Explicitly noob-friendly.

founded 1 year ago
MODERATORS
 

I was able to setup a debugger using a launch mode using Visual Studio Code with the Bash Debug extension. Is it possible to setup the debugger in VSCode to be able to debug a bash script using a attach debug mode?

For debugging scripts on the host machine and scripts inside a docker container?

top 1 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 1 month ago

Bash is an interpreted language, so you don't really need a fancy debugger. You can just add an exit or suspend in the middle of the code to act as a breakpoint, or manually run the code one line at a time if you want to step through it.