find: missing argument to -exec

后端 未结 11 2173
心在旅途
心在旅途 2020-11-28 17:52

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 -         


        
11条回答
  •  甜味超标
    2020-11-28 18:22

    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 {} ;

提交回复
热议问题