in reply to Re^2: How to search recursively and return specific patterns
in thread How to search recursively and return specific patterns

That's a regex. 'm' means match the pattern following, and '$' means 'anchor' match to end of string ie there must be no chars after 'mp3' or 'rm'.
See http://perldoc.perl.org/perlrequick.html and http://perldoc.perl.org/perlretut.html

Cheers
Chris

  • Comment on Re^3: How to search recursively and return specific patterns

Replies are listed 'Best First'.
Re^4: How to search recursively and return specific patterns
by dilip_val (Acolyte) on Aug 24, 2007 at 15:33 UTC
    Thanks Chris and Thanks Again to everyone for helping me out. Cheers Jude