#!/bin/sh printf "\n" printf "Welcome to\n" cat << "ASCII" ███████ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ ███████ _____ __ ___ __ __ (_ | /\ |__) | / \(_ __) | / \| \ | \__/__) ASCII printf " v$(cat /usr/lib/startos/VERSION.txt)\n\n" printf " %s (%s %s)\n" "$(uname -o)" "$(uname -r)" "$(uname -m)" printf " Git Hash: $(cat /usr/lib/startos/GIT_HASH.txt)" if [ -n "$(cat /usr/lib/startos/ENVIRONMENT.txt)" ]; then printf " ~ $(cat /usr/lib/startos/ENVIRONMENT.txt)\n" else printf "\n" fi printf "\n" printf " * Documentation: https://docs.start9.com\n" printf " * Management: https://%s.local\n" "$(hostname)" printf " * Support: https://start9.com/contact\n" printf " * Source Code: https://github.com/Start9Labs/start-os\n" printf " * License: MIT\n" printf "\n"