I have 2 lists which I am trying to combine/join/merge using a bash script.
List 1
file1-1
file1-2
file1-3
file1-4
and so on
List 2 contains
file2-1
file2-2
file2-3
file2-4
and so on
I'm try to get an output something like this
file1-1:file2-1
file1-2:file2-1
file1-3:file2-1
file1-4:file2-1
file1-1:file2-2
file1-2:file2-2
file1-3:file2-2
file1-4:file2-2
file1-1:file2-3
file1-2:file2-3
file1-3:file2-3
file1-4:file2-3
and so on