yhc89 has asked for the wisdom of the Perl Monks concerning the following question:

I have a directory file which contains all the paths for Defination files Test FIlesand Instruction files.
Defination file looks like
##Defination file
Def 1 :asjskajs
Def 2 :jskdjsd
Def 3 :jdksjds
Each Instruction FIle contains Instruction sets like
##Instruction File1
{
Instruction 1
run Def1
sleep
run def2
}
{
Instruction 2
run Def 3
sleep
run Def1
exit
}
likewise multiple instruction files with multiple instrcution sets
Test FIle looks like
{
run Instruction file1 Instruction 2
sleep 5
}
Can anyone guide me how to do this.Like how to run a specific intruction from an Instruction file Can I use multidimensional array to do it like Storing the Commands ,Instrcution file and Instruction in a multi array

Replies are listed 'Best First'.
Re: Multidimensional Array
by Anonymous Monk on Jun 25, 2013 at 13:01 UTC