Получить все файлы из папок в 1 родительскую папку
find ~/Downloads/ -type f -print0 | xargs -0 mv -t ~/Videos
Lucky Lemur
find ~/Downloads/ -type f -print0 | xargs -0 mv -t ~/Videos
find ~/Downloads/ -maxdepth 1 -type f -print0 | xargs -0 mv -t ~/Videos