6 Different Ways To Kill Unresponsive Programs in Linux

6 Different Ways To Kill Unresponsive Programs in Linux . The good thing about Linux is that you almost never have to hit the reset button due to unresponsive or hung applications. There are so many ways you can gain back control that you never have to resort to such extreme measures. In this article, we take a look at some of the ways you can deal with unresponsive applications on your Linux box.
One minute to read

bash debugging tricks i forget all the time

Bash debugging Introduction Once in a while i need to debug a bash script that i wrote, but i need to search how to get the line number of debug to a file, so easier for me to put it in mij blog, maybe it will help somebody else also. Howto Enable debugging set -x Add line numbers PS4=’$LINENO: ' Debug to external file exec 5> debug_output.txt BASH_XTRACEFD="5" PS4='$LINENO: ' set -x Disable debug
One minute to read