Obtenez tous les fichiers des dossiers à 1 dossier parent
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