1 Bash
Gytis Repečka edited this page 2026-08-18 09:10:17 +03:00

Bash (short for "Bourne Again SHell") is an interactive command interpreter and command language developed for Unix-like operating systems.1

Shebang

In computing, a shebang is the character sequence #!, consisting of the characters number sign (also known as sharp or hash) and exclamation mark (also known as bang), at the beginning of a script. It is also called sharp-exclamation, sha-bang, hashbang, pound-bang, or hash-pling.2

Use proper shebang in shell scripts:

#!/usr/bin/env bash
echo $BASH_VERSION

  1. Bash (Unix shell), Wikipedia (2026). ↩︎

  2. Shebang (Unix),Wikipedia (2026). ↩︎