Move folders using the mv command

Moving a directory to a different directory is the same as moving a file.

The following command will move the a_dir directory into the work_dir directory.

 
 

mv a_dir work_dir

or

 
 

mv to_dir work_dir/to_dir

Guess you like

Origin blog.csdn.net/qq_42000661/article/details/127362384