Answers for "move all files and folders inside a folder to another location linux"

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 "move all files and folders inside a folder to another location linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language