Introduction to Automation and Shell Scripting in Linux (Part 02)

Shahana RiazShahana Riaz
2 min read

How to Write a Shell Script

  1. Create a Shell Script file with extension .sh using Touch command.

  2. Open file using command vi/vim.

  3. Press esc i to insert/write something on file.

  4. Start writing your Shell Script using specific indentation/syntax.

#! This is called Shebang followed by bin followed by executable (in our case it is bash).

What is The Purpose of (#!) Shebang in Shell Scripting

Shebang (#!) is the first line in a shell script that tells the computer which program should run the script. It helps the system know how to interpret the script correctly. Common Shebangs and Their Differences

ShebangInterpreterWhat It Does
#!/bin/bashBash (Bourne Again Shell)Most commonly used, supports many features.
#!/bin/shBourne Shell (or its link)May point to different shells depending on the system.
#!/bin/dashDash (Debian Almquist Shell)A lightweight and fast shell but lacks some Bash features.
#!/bin/kshKorn ShellAn older shell, less common now.
#!/usr/bin/env bashFinds bash in system pathsUseful for portability across different systems.

Why Use a Shebang?

  1. Specifies the shell: Ensures the script runs in the correct shell, avoiding unexpected errors.

  2. Allows direct execution: Without it, you'd need to run the script as bash script.sh instead of ./script.sh.Differences Between /bin/sh and /bin/bash

    Linux distributions use different links:

      • On Ubuntu, /bin/sh points to /bin/dash (which lacks some Bash features).

        • On older systems, /bin/sh used to be the original Bourne Shell.

        • On other systems, /bin/sh may still link to Bash.

    • If you write a Bash script but use #!/bin/sh on Ubuntu, it might not work because Dash doesn't support all Bash features.

💡 Tip: If you're writing a script that requires Bash features, always use #!/bin/bash.

  1. After writing first line you can start writing your script.

How to Edit a Script in Vim (Linux Text Editor)

  • Enter insert mode: Press i

  • Save and exit: Press Esc, then type :wq!

  • Quit without saving: Press Esc, then type :q!

Conclusion

By understanding shebang and different shell interpreters, you can write scripts that work smoothly on various systems.

0
Subscribe to my newsletter

Read articles from Shahana Riaz directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Shahana Riaz
Shahana Riaz