Sha256: e07204c3fbe3d93d505f9aa955b2b9dae66168fb93a51d1bdb397f805cca9a67

Contents?: true

Size: 711 Bytes

Versions: 66

Compression:

Stored size: 711 Bytes

Contents

#!/usr/bin/env bash

# This is a bash script template in order to help you quick start any script.
# It contains some sensible defaults, you can learn more by visiting:
# https://google.github.io/styleguide/shell.xml

# This option will make the script exit when there is an error
set -o errexit
# This option will make the script exit when it tries to use an unset variable
set -o nounset

main() {
  # A string variable containing only the FIRST argument passed to the script,
  # you can use input=$@ to get a string with ALL arguments
  input=$1

  # Add your code here
}

# Calls the main function passing all the arguments to it via '$@'
# The argument is in quotes to prevent whitespace issues
main "$@"

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.179 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.178 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.177 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.176 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.175 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.174 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.173 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.172 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.171 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.170 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.169 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.167 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.166 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.165 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.164 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.163 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.162 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.161 tracks/bash/exercises/hello-world/hello_world.sh
trackler-2.2.1.160 tracks/bash/exercises/hello-world/hello_world.sh