I was helped out today with a command, but it doesn\'t seem to be working. This is the command:
find /home/me/download/ -type f -name \"*.rm\" -exec ffmpeg -
Just for your information: I have just tried using "find -exec" command on a Cygwin system (UNIX emulated on Windows), and there it seems that the backslash before the semicolon must be removed: find ./ -name "blabla" -exec wc -l {} ;
find ./ -name "blabla" -exec wc -l {} ;