HelloWorld/HelloWorld.bash

26 lines
446 B
Bash
Raw Permalink Normal View History

#!/usr/bin/bash
2018-11-05 15:35:32 -06:00
# File: HelloWorld.bash
2023-10-03 12:43:34 -05:00
#
# Description: This file exemplifies printing 'Hello, World!' in bash.
#
# Package: AniNIX/HelloWorld
2018-11-05 15:35:32 -06:00
# Copyright: WTFPL
2023-10-03 12:43:34 -05:00
#
# Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
2018-11-05 15:35:32 -06:00
2023-10-03 12:43:34 -05:00
### String to print
export _helloWorld="Hello, World!"
2019-04-15 15:58:35 -05:00
2023-10-03 12:43:34 -05:00
### Prints 'Hello, World!'
2018-11-05 15:35:32 -06:00
### </summary>
2023-10-03 12:43:34 -05:00
function main() {
2019-04-15 15:58:35 -05:00
printf "$_helloWorld""\n"
2018-11-05 15:35:32 -06:00
}
## MAIN
2019-04-15 15:58:35 -05:00
if [ `basename "$0"` == "HelloWorld.bash" ]; then
main
2018-11-05 15:35:32 -06:00
fi