we have two array variables:
linux_machines
disks
printf "%s\n" ${linux_machines[*]}
neptun1
neptun2
neptun3
printf "%d\n" ${disks_num[*]}
4
5
5
how to combine both arrays values so w'll get the following expected results
neptun1 ..... 4
neptun2 ..... 5
neptun3 ..... 5