It's so delicious

Create and run a shell script

Create the file

sudo nano hello-world.sh

Content of the file

#!/bin/bash

echo "Hello World!"

make the file executable

sudo chmod +x hello-world.sh

Run the script

./hello-world.sh