如何在unix中移动或复制’find’命令列出的文件?

前端之家收集整理的这篇文章主要介绍了如何在unix中移动或复制’find’命令列出的文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个列表,我看到使用以下命令的某些文件,但如何将这些文件列出到另一个文件夹,说〜/ test? @H_502_1@find . -mtime 1 -exec du -hc {} +
添加到Eric Jablow的答案,这里是一个可能的解决方案(它为我工作 – linux mint 14 / nadia) @H_502_1@find /path/to/search/ -type f -name "glob-to-find-files" | xargs cp -t /target/path/

您也可以参考“How can I use xargs to copy files that have spaces and quotes in their names?”。

原文链接:https://www.f2er.com/bash/388719.html

猜你在找的Bash相关文章