复制制定大小文件

sh/bash/dash/ksh/zsh等Shell脚本
回复
liucheng1513
帖子: 62
注册时间: 2010-09-08 18:17

复制制定大小文件

#1

帖子 liucheng1513 » 2011-03-04 20:13

如何把/home/work/media/目录下小于10M的文件复制到/var/tmp目录下

find /home/work/media/* -type f -size +1024 -a -size -10240 -print0 | xargs -i0 cp {} /var/tmp
不管用,那位知道哪错
sk1418
帖子: 229
注册时间: 2007-07-01 17:36
系统: (En):System
来自: (En):address
联系:

Re: 复制制定大小文件

#2

帖子 sk1418 » 2011-03-04 21:03

this:

代码: 全选

find /home/work/media/ -type f  -size -10M -print0|xargs -0 -i cp {} /var/tmp
works for me
---
regards,

Kent
头像
ebok
帖子: 852
注册时间: 2008-02-15 0:09

Re: 复制制定大小文件

#3

帖子 ebok » 2011-03-04 21:11

try

代码: 全选

find /home/work/media/* -type f -size +1024 -a -size -10240 -exec cp {} /var/tmp \;
Somebody think they are full of niubility, so they play a zhuangbility, but only reflect their shability.
回复