Answers for "linux move all files from one directory to child directory"

4

linux move all files up a directory

mv myfolder/* .
Posted by: Guest on July-05-2020
0

move all files in subdirectories to current directory linux

find . -type f -mindepth 2 -exec mv -i -- {} . ;
Posted by: Guest on November-01-2021

Code answers related to "linux move all files from one directory to child directory"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language