Manage files and folders
- cd - change directory
- ls - list the content of a directory
- pwd - parent working dir
- mkdir - create a new directory
- rm - Remove files and folders
- cp - Copy files and folders
- mv - Move files and folders
- ditto - Move files and folders (advanced)
Acess and permission to files/folders
mv
Syntax: mv [-Options] <source> <target>
Usage/Result: Move a file or a folder to another location.
Options:
| -n | Do not overwrite existing files/folders. |
| -i | Confirm every action that will overwrite another file or folder. |
| -f | Overwrite existing files without prompting for it. |
| -v | Verbose: Outputs the name of the files as they are being moved. |
Exempel
| mv myfile.txt ~/Documents | Moves myfile.txt to ~/Documents. |
| mv *.jpg /Data/Pictures | Move all files in the current working dir that ends with .jpg to the /Data/Pictures directory. |
| mv Documents "My documents" | Move the folder Documents to My documents. Quotes are needed since the target destination has spaces in it. |
Quick tip:
Sometimes you might not be able to perform a certain command or task from the Terminal.
This might be because you don't have the right permission to do so.
When that happens you can try to add the word "sudo" in the beginning of the line.
Sudo is an abbreviation of superuser do and means that you want to execute the following command as a user with extended permissions, most often as an Administrator.
When using "sudo" you sometimes need to enter the password of the root account.
Learn more about sudo.