linux 将find的文件copy到另一个文件夹

来源:互联网 发布:帝豪 gs 知乎 编辑:程序博客网 时间:2024/05/21 04:23

  很简单:

  find /path/to/search/ -type f -name the_file_you_want_to_find | xargs cp -t the_target_path_that_you_would_like_to_put_files_into

       参考:http://www.linuxidc.com/Linux/2015-08/122061.htm

阅读全文
0 0