Hi,
I am getting record as follows
I want output like this
Dir Name
FileName1 Owner1
Associated file1
Associated file2
FileName2 Owner2
Associated file3
Associated file4
How do i acheive the format..whether i have to form hash of hash ..?
Any inputs..
TIA
I am getting record as follows
Code:
foreach $file ( ) {
..//some regex
..//$dir = $1 ; #this can be repeated in foreach loop
..//$file for $dir
..//$owner for $file
..//associated files for $file
}
I want output like this
Dir Name
FileName1 Owner1
Associated file1
Associated file2
FileName2 Owner2
Associated file3
Associated file4
How do i acheive the format..whether i have to form hash of hash ..?
Any inputs..
TIA