HelloWorld/HelloWorld.bash

26 lines
446 B
Bash
Executable File

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