hello_world.sh (97B)
1 #!/usr/bin/env bash 2 3 set -o errexit 4 set -o nounset 5 6 main() { 7 echo "Hello, World!" 8 } 9 10 main "$@"