Skip to content

Instantly share code, notes, and snippets.

@scheakur
Created March 7, 2016 09:49
Show Gist options
  • Save scheakur/cfc8c5452dafed5ec0d7 to your computer and use it in GitHub Desktop.
Save scheakur/cfc8c5452dafed5ec0d7 to your computer and use it in GitHub Desktop.
array.sh
a1=(
hoge
fuga
piyo
)
a2=(foo "${a1[@]}")
echo ${#a2[@]} # => 4
echo ${a2[1]} # => hoge
a3=(bar "${a1[*]}")
echo ${#a3[@]} # => 2
echo ${a3[1]} # => hoge fuga piyo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment