Post published:19/05/2014 Post category:Linux general issues Move files from different folders into a new folder. Inside the folder you want to get the files, type: find . -name "*.*" -exec mv "{}" /newdir \; 1 find . -name "*.*" -exec mv "{}" /newdir \; newdir is the folder were files will be moved.