copy: find . -type f -print0 | xargs -0 -I%%% cp %%% /target_dir/ move: find . -type f -print0 | xargs -0 -I%%% mv %%% .
personal public pastebin of random
copy: find . -type f -print0 | xargs -0 -I%%% cp %%% /target_dir/ move: find . -type f -print0 | xargs -0 -I%%% mv %%% .