"cp" in Chinese (Simplified)
cp(终端/命令行复制命令)
Definition
'cp' 是在 Unix、Linux 及类似系统中用于在命令行或终端下将文件或文件夹从一个位置复制到另一个位置的命令。
Usage Notes (Chinese (Simplified))
'cp' 仅用于命令行,不适用于图形界面。必须正确书写路径,区分大小写。常见错误是复制文件夹时漏写 '-r'。主要出现在技术或编程相关场景。
Examples
Type cp file.txt backup.txt to copy a file.
输入 **cp** file.txt backup.txt 以复制文件。
Use cp to copy images from one folder to another.
使用 **cp** 可以将图片从一个文件夹复制到另一个。
Don't forget to add '-r' with cp when copying folders.
复制文件夹时,别忘了在 **cp** 后加 '-r'。
If you use Linux, you'll need to know how to use cp for backups.
如果你用 Linux,必须学会用 **cp** 做备份。
I accidentally overwrote my file because I messed up the cp command.
因为弄错了 **cp** 命令,我不小心覆盖了文件。
Just run cp with the right options and you're good to go.
只要用对参数运行 **cp** 就可以了。