cp mp4 video
To copy an MP4 video file using the command line, you can use the `cp` command (on Unix-like systems) or the `copy` command (on Windows). Here’s how you can do it on both systems:
### On Unix/Linux/macOS:
1. Open the terminal.
2. Use the `cp` command followed by the source file and the destination. For example:
```bash
cp /path/to/source/video.mp4 /path/to/destination/
```
Replace `/path/to/source/video.mp4` with the actual path of your MP4 file, and `/path/to/destination/` with the desired location where you want to copy the file.
### On Windows:
1. Open Command Prompt.
2. Use the `copy` command like this:
```cmd
copy "C:\path\to\source\video.mp4" "C:\path\to\destination\"
```
Again, replace `"C:\path\to\source\video.mp4"` with your actual source path and `"C:\path\to\destination\"` with the desired location.
### Additional Notes:
- Ensure that you have the necessary permissions to read the source file and write to the destination.
- If you're copying to the same directory, you can simply rename the copied file like this:
```bash
cp video.mp4 video_copy.mp4 # Unix/Linux/macOS
```
```cmd
copy video.mp4 video_copy.mp4 # Windows
```
Make sure the file paths are correct to avoid errors!