This is problay easy to do but I'm really new to perl and am having trouble opening files in several directories to make a list of them using wildcards. Here is what I have:
my @files = <../*/*.asm>;
So basicly I'm trying to search for all files endding with .asm that are in any subdirectory of the parent directory that I am currently in.
my @files = <../*/*.asm>;
So basicly I'm trying to search for all files endding with .asm that are in any subdirectory of the parent directory that I am currently in.