something like this will work for all files named .txt:
Code:
find . -name *.txt| xargs mv {} ./all_files_go_here \;
or to move all files:
Code:
find . -type f -exec mv {} ./all_files_go_here \;
I can't check the syntax since i'm not on my machine atm, might contain typos!