Skip to content

Instantly share code, notes, and snippets.

@miy4
Created November 16, 2021 01:23
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 miy4/a017b5aa49008bae77e16f216d624955 to your computer and use it in GitHub Desktop.
Save miy4/a017b5aa49008bae77e16f216d624955 to your computer and use it in GitHub Desktop.
Joining elements of an array in Bash
#!/bin/bash
fruits=('apple' 'orange' 'banana')
printf '%s\n' "${fruits[*]}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment