I need help with bash. I have two array:
Array1=(1 2 3 4 5 6 7)
Array2=(2 5 7)
I need remove items from array1 which are in Array2. Result should be
Array3=(1 3 4 6)
.
I need help with bash. I have two array:
Array1=(1 2 3 4 5 6 7)
Array2=(2 5 7)
I need remove items from array1 which are in Array2. Result should be
Array3=(1 3 4 6)
.