Move File From Subdirectory To Directory In Linux

[Solved] Move File From Subdirectory To Directory In Linux | Perl - Code Explorer | yomemimo.com
Question : move file from subdirectory to directory in linux

Answered by :

find ~/Downloads/ -maxdepth 1 -type f -print0 | xargs -0 mv -t ~/Videos

Source : https://superuser.com/questions/658075/how-do-i-move-files-out-of-nested-subdirectories-into-another-folder-in-ubuntu | Last Update : Wed, 10 Aug 22

Answers related to move file from subdirectory to directory in linux

Code Explorer Popular Question For Perl