❯
hello
bashPrint 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)"
⚠ Always review scripts before piping to bash.