Skip to content

Instantly share code, notes, and snippets.

@steshaw
Created November 24, 2018 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steshaw/53ba0095bce8ccab52d26a14375dedb8 to your computer and use it in GitHub Desktop.
Save steshaw/53ba0095bce8ccab52d26a14375dedb8 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -euo pipefail
my_array=(one two three)
print_array() {
echo "${my_array[*]}"
}
IFS=$'\n' print_array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment