← all scripts

hello

bash

Print a friendly hello message

About

A simple demonstration script that prints a colourful welcome message to your terminal. Great for testing that curl piping works correctly.

Run

curl -sSf https://paua.sh/hello | bash
curl -sSf https://paua.sh/hello

Source

view on git.paua.sh ↗
#!/usr/bin/env bash
echo -e "\033[1;32m👋 Hello from paua.sh!\033[0m"
echo "Your shell: $SHELL"
echo "Your hostname: $(hostname)"
Updated: 2026-05-16 · git.paua.sh/angus_forrest_uk/hello

⚠ Always review scripts before piping to bash.