I just want to get the files from the current dir and only output .mp4 .mp3 .exe files nothing else. So I thought I could just do this:
ls | grep \\.mp4$ | g
ls -R | findstr ".mp3"
ls -R => lists subdirectories recursively
ls -R