-
Lets understand about shellcheck and IDE
-
VIM provides syntax highlighting, which helps in catching any syntax error in your shell scripts.
-
To analyze and identify bugs and area of improvement in your script use
shellcheck
utility based on your OSapt-get install shellcheck OR yum install shellcheck
-
The
JetBrains PyCharm
supports a development environment for Python, but it also has plugin for shell scripts -
It also provides syntax highlighting and recommendations to improve your script.
- Visual Studio Code and Atom can be used as an editor tool.
-
Google's
styleguide
can be used too for writing shell scripts.
-