Answers for "move all files to parent directory linux"

1

linux move folder and subfolders to parent

cd to/the/dir
mv * ../
Posted by: Guest on October-08-2020
7

linux move everything in a directory to another directory

mv  -v ~/Downloads/* ~/Videos/
Posted by: Guest on April-03-2020
4

linux move all files up a directory

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

move all subfolders to parent folder linux

find . -maxdepth 1 -exec mv {} .. ;
Posted by: Guest on March-28-2020

Code answers related to "move all files to parent directory linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language