In the line
if ($line =~ m@ <SOME STUFF TO MATCH>.*\s.*<SOME MORE STUFF TO MATCH>.*$@mg)
what does the \s and .*$@mg actualy mean/do?
I think it should search a string for some stuff on one line, then skip to the next line and look for some other stuff, but it doesnt seem to do anything.
if ($line =~ m@ <SOME STUFF TO MATCH>.*\s.*<SOME MORE STUFF TO MATCH>.*$@mg)
what does the \s and .*$@mg actualy mean/do?
I think it should search a string for some stuff on one line, then skip to the next line and look for some other stuff, but it doesnt seem to do anything.