- Forums
- Linux
- How To Move Folder Linux
I Want To Learn How To Move A Folder Linux Through The Conosole Terminal Shell [3246], Last Updated: Mon Jun 24, 2024
Webune Support
Mon Oct 12, 2009
0 Comments
463 Visits
if you want to learn how to move a folder in linux this is how you do it with this command
mv
lets say i want to move a file from my home directory:
/home/user1/mydocs/mypics.jpg
and i wan to move it to my pictures folder at:
/home/user2/mypcis/
i would send this command:
mv /home/user1/mydocs/mypics.jpg /home/user2/mypcis/
so basically, the syntax is:
mv from_here to_here