I've got two lists:
tagged=(a-01 a-02 a-03 a-04 a-06)
merged=(a-01 a-02 a-05)
I'm looking for a bash solution to print only those elements which are in tagged
list but are not in merged
((a-03 a-04 a-06)
).
I've been trying to iterate over both of those list and I failed. I strongly believe that bash got some sneaky way to solve it.