Hi I am fairly new to Perl and been asked to do a task.
I have a record file in .csv format with 10 or more files and been asked to transpose the records so each row is turned into 10 rows per records.
id Column1 column2 column3 ..... column N
1 apple Red Medium Text1
2 Mango Yellow Large Text2
3 Banana Yellow small Text3
4 Apple Red Medium Text4
5 Pear Green Medium Text5
And this need to be displayed as
id 1 column1 Apple
id 1 column2 Red
id 1 column3 Medium
.
.
id 1 columnN text1
Any help or suggestion is greatly appreciated.