使用Find将文件移动到Linux中的一个目录

If you want to move all files of a particular file type into a single directory, you can use the find command to do this easily in Linux.

如果要将特定文件类型的所有文件移动到单个目录中,则可以使用find命令在Linux中轻松完成此操作。

用法 (Usage)

Run this command from the root directory of where you want to find the files. For instance, if you wanted to find all .zip files from any subdirectory under /home and move them into the /backup directory, you would use the following command:

从要查找文件的根目录中运行此命令。 例如,如果要从/ home下的任何子目录中查找所有.zip文件并将其移至/ backup目录,则可以使用以下命令:

find /home -iname '*.zip' -exec mv '{}' /backup/ \;
find /home -iname '*.zip' -exec mv '{}' /backup/ \;

This would move all the files into the same directory, so any files that were duplicated would be overwritten. Note that the subdirectories would not be copied, just the files.

这会将所有文件移动到同一目录中,因此所有重复的文件都将被覆盖。 请注意,不会复制子目录,而只会复制文件。

翻译自: https://www.howtogeek.com/168164/move-files-into-one-directory-in-linux-with-find/

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值