[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ale] Shell Scripting -> find files *.<ext> and move them to /backup



Robert Heaven wrote:

> I think might work:
> 
> find / -name "*.jpg" -exec mv /mnt/mymachine/ {} \;

mv might have trouble across filesystems.  Could do a cp and then a rm.

-- Jason