I have 2 csv files. The first has this column:
"www.test.com/"
"www.test2.com/"
"www.test3.com/"
"www.test4.com/"
and the second has this column:
"a"
"b"
"c"
"d"
Now i want to create a csv file with this form:
"www.test.com/a"
"www.test.com/b"
"www.test.com/c"
"www.test.com/d"
"www.test2.com/a"
"www.test2.com/b"
"www.test2.com/c"
"www.test2.com/d"
"www.test3.com/a"
"www.test3.com/b"
"www.test3.com/c"
"www.test3.com/d"
"www.test4.com/a"
"www.test4.com/b"
"www.test4.com/c"
"www.test4.com/d"
I want to create a new csv file compining data from both csv files in this way.