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
[Linux] need help for moving rar to destination.
-
Metalheadz
- Newbie

- Posts: 1
- Joined: October 9th, 2011, 3:53 pm
Re: [Linux] need help for moving rar to destination.
Code: Select all
find "$1" -name "*.r??" -type f -exec mv -t /destination/path {} \;Code: Select all
find "$1" -name "*.r??" -type f -exec mv -t .. {} \;