Questions tagged [bashdb]

bashdb is a gdb-like debugger for bash

bashdb is a source-code debugger for bash that follows the gdb command syntax. Additional References

Related Resources

3 questions
9
votes
1 answer

How can I install bashdb on Ubuntu 18.04

I upgraded to Ubuntu 18.04 and noted that my bash db installations removed. I tried to reinstall it, but apt can not find it. m@m-XPS-M1530:~$ sudo apt-get -y update Hit:1 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:2…
user654019
  • 2,277
  • 4
  • 21
  • 20
2
votes
1 answer

"Debugging" with bashdb: why do I lose command echo after stepping into a simple script?

I heard about the bash debugger ( bashdb ) after reading a comment so I thought I should try it out and see if it can help me analyze bash scripts or more generally the execution of commands. There are facilities which can be leveraged independently…
user44370
0
votes
1 answer

Bash-Script is not executing command, but if command entered manually, it works

this is my bash-script: #!/bin/bash sleep 3 sudo apt-get update && echo 'y' | sudo apt-get upgrade cd /opt/ sleep 5 wget http://dl.4players.de/ts/releases/3.0.13.6/teamspeak3-server_linux_amd64-3.0.13.6.tar.bz2 sleep 10 tar -jxvf…
Niclas
  • 1