Page 1 of 1

[Linux] need help for moving rar to destination.

Posted: October 9th, 2011, 4:08 pm
by Metalheadz
Hi,
i need a litte help to move the rar or else to another folder.
or
move one folder up , but only the rar (avi) files.

I hope someone can help me.

Kind regards

Re: [Linux] need help for moving rar to destination.

Posted: October 12th, 2011, 10:06 am
by Mar2zz

Code: Select all

find "$1" -name "*.r??" -type f -exec mv -t /destination/path {} \;
to move up one folder, but not sure if that works;

Code: Select all

find "$1" -name "*.r??" -type f -exec mv -t .. {} \;