Bash Arrays 3: Different Methods for Copying an Array
Pre-requistites Knowing how to declare an array and set its elements Knowing how to get the indices of an array Knowing how to cycle through an array Setup This is the same setup as the previous post Let’s make a shell script. In your favourite editor type #!/bin/bash And save it somewhere as arrays.sh. Now…