Shell Append to an array Append an item to an array in shell scripting Jesse Torres May 19, 2023 • 1 min read array=("first" "second" "third") array+=('fourth') Share