Skip to content

Latest commit

 

History

History
46 lines (22 loc) · 1.12 KB

07-Tips&Tricks-ShellCheck-&-IDE.md

File metadata and controls

46 lines (22 loc) · 1.12 KB

Tipes & Tricks - ShellCheck & IDE

  • Lets understand about shellcheck and IDE

  • VIM provides syntax highlighting, which helps in catching any syntax error in your shell scripts.

    vi

    ShellCheck

    • To analyze and identify bugs and area of improvement in your script use shellcheck utility based on your OS

      apt-get install shellcheck
      
      OR
      
      yum install shellcheck
      
      

      ShellCheck-Github

      s

    IDE

    • 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.

      id

    Editors

    • Visual Studio Code and Atom can be used as an editor tool.

    Styleguide

    • Google's styleguide can be used too for writing shell scripts.

      styleguide