Linux termial copy all files from subdirectories do sigle directory

To copy all files

$ find . -type f -exec cp {} /home/mario/destination_folder \;

 

Merge all content of file s

$cat * > destination_file_name