#!/usr/bin/bash # File: HelloWorld.bash # # Description: This file exemplifies printing 'Hello world!' in bash. # # Package: AniNIX::Foundation/HelloWorld # Copyright: WTFPL # # Author: DarkFeather ### String to print export _helloWorld="Hello world!" ### Prints 'Hello world!' ### function main() { printf "$_helloWorld""\n" } ## MAIN if [ `basename "$0"` == "HelloWorld.bash" ]; then main fi