Source of: /ADI/cgi/hello_world.sh

#!/bin/bash

# Required header that tells the browser how to render the text.
echo "Content-Type: text/plain"
echo ""

# Print a simple message to the display window.
echo "Hello, World!"