Move files from different folders into a new folder.
Inside the folder you want to get the files, type:
1 |
find . -name "*.*" -exec mv "{}" /newdir \; |
newdir is the folder were files will be moved.
Move files from different folders into a new folder.
Inside the folder you want to get the files, type:
1 |
find . -name "*.*" -exec mv "{}" /newdir \; |
newdir is the folder were files will be moved.