Certainly! Here are some examples of the mv command in different scenarios:
1. Rename a File
mv oldname.txt newname.txt
This renames oldname.txt to newname.txt.
2. Move a File to a Different Directory
mv file.txt /path/to/directory/
This moves file.txt into the specified directory.
3. Move and Rename a File
mv file.txt /path/to/directory/newname.txt
This moves file.txt to the specified directory and renames it to newname.txt.
4. Rename a Directory
mv old_directory new_directory
This renames old_directory to new_directory.
5. Move Multiple Files to a Directory
mv file1.txt file2.txt /path/to/directory/
This moves both file1.txt and file2.txt into the specified directory.
6. Interactive Move (Prompt Before Overwriting)
mv -i file.txt /path/to/directory/
This prompts you before overwriting file.txt if a file with the same name exists in the destination.
7. Verbose Mode (Show Actions)
mv -v file.txt /path/to/directory/
This shows what is being done during the move operation.
Feel free to ask if you need more examples or have specific scenarios in mind!
