POSIX
ShellCheck – check basic POSIX shell script errors
2015/08/03
Here is description of the tool: […] To install dnf install ShellCheck And just run the tool on the script to get the common errors.
bash debug – log all executed commands
2014/02/03
Whenever I am writing a script in perl or bash, I always wish that there was some way to have all the commands logged or output to screen. I know there is “set -x” option to have debugging enabled, …