cp
拷贝一个文件。
格式
cp <src file name> <dst file name>
说明
[root@sylixos:/root]# help cp
copy file
cp src file name dst file name
[root@sylixos:/root]#
此命令用来将 src file文件内容拷贝到 dst file文件中。
备注:
- 如果 dst file 不存在会先创建dst file 文件,再拷贝src file 文件内容。
- 如果 dst file 存在会询问是否覆盖 dst file,如果选择不覆盖则此次拷贝失败。
样例
[root@sylixos:/apps/test]# ls
hello.c temp.txt
[root@sylixos:/apps/test]# cp hello.c world.c
copy complete. size:18(Bytes) time:0(s) speed:18(Bps)
[root@sylixos:/apps/test]# ls
hello.c temp.txt world.c
[root@sylixos:/apps/test]# cp hello.c world.c
destination file already exists, overwrite? (Y/N)
Y
copy complete. size:18(Bytes) time:0(s) speed:18(Bps)
[root@sylixos:/apps/test]# ls
hello.c temp.txt world.c
[root@sylixos:/apps/test]#