Getting StartedHello, Bash (and the Shebang)
All courses

Your first script

#!/bin/bash is the shebang — it tells the OS which interpreter to use. echo prints text.

Best practice: Always start scripts with a shebang and use bash explicitly when you need Bash features (not plain sh).

Output
Press Run to execute your code.