find: missing argument to -exec

后端 未结 11 2159
心在旅途
心在旅途 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:26

    If you are still getting "find: missing argument to -exec" try wrapping the execute argument in quotes.

    find  -type f -exec "chmod 664 {} \;"
    

提交回复
热议问题