gpt4 book ai didi

linux - 将 "find"找到的文件复制到另一个文件夹

转载 作者:太空宇宙 更新时间:2023-11-04 03:40:10 25 4
gpt4 key购买 nike

我想复制通过以下命令在某个文件夹(/path/to/folder/)中找到的共享库。我怎样才能在 bash 中做到这一点?

find /usr/lib/python2.7/ -name '*.so' -exec ldd {} \;

最佳答案

xargs 来救援。

find /usr/lib/python2.7/ -name '*.so' -exec ldd {} \; |
xargs -r cp -t where/is/destination

这最终有效地收集了从 lddcp 命令行末尾的输出。

仅当文件名不包含换行符时,此操作才能正常工作。如果输入文件名可能包含空格,某些旧版本的 xargs 还需要其他选项。

关于linux - 将 "find"找到的文件复制到另一个文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30015916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com