Hello World (Bash)
What is Bash? A Unix shell and command language used on Linux/macOS. Hello World proves your shell and permissions are working.
Example
#!/bin/bash
echo "Hello World"How to run it
- Save it to a file.
- Run
chmod +x filename.shwhere applicable. - Run it from the terminal.