Linux Move Folder And Subfolders To Parent

[Solved] Linux Move Folder And Subfolders To Parent | Perl - Code Explorer | yomemimo.com
Question : linux move folder and subfolders to parent

Answered by : drakonkat

cd to/the/dir
mv * ../

Source : https://superuser.com/questions/88202/how-do-i-move-files-and-directories-to-the-parent-folder-in-linux | Last Update : Thu, 15 Oct 20

Question : move all subfolders to parent folder linux

Answered by : jacob-r4rgak2weppa

find . -maxdepth 1 -exec mv {} .. \;

Source : https://superuser.com/questions/88202/how-do-i-move-files-and-directories-to-the-parent-folder-in-linux | Last Update : Sat, 04 Apr 20

Answers related to linux move folder and subfolders to parent

Code Explorer Popular Question For Perl