How can I use xargs to copy files that have spaces and quotes in their names?

后端 未结 22 1066
春和景丽
春和景丽 2020-12-02 03:49

I\'m trying to copy a bunch of files below a directory and a number of the files have spaces and single-quotes in their names. When I try to string together find

22条回答
  •  渐次进展
    2020-12-02 04:40

    This method works on Mac OS X v10.7.5 (Lion):

    find . | grep FooBar | xargs -I{} cp {} ~/foo/bar
    

    I also tested the exact syntax you posted. That also worked fine on 10.7.5.

提交回复
热议问题