拷贝文件

更新时间:
2024-03-14
下载文档

拷贝文件

cp 命令用来对文件进行拷贝,例如:将 /tmp/test2 文件拷贝到 /apps/test 文件

[root@sylixos:/tmp]# help cp
copy file
cp src file name dst file name
[root@sylixos:/tmp]# ls /tmp/
test2
[root@sylixos:/tmp]# ls /apps/
ddd             hunterbox       t1              cmdParse
[root@sylixos:/tmp]# cp /tmp/test2 /apps/test
copy complete. size:17332(Bytes) time:0(s) speed:17332(Bps)
[root@sylixos:/tmp]# ls /apps/
test            ddd             hunterbox       t1              cmdParse
[root@sylixos:/tmp]# ls /tmp/
test2
[root@sylixos:/tmp]#
文档内容是否对您有所帮助?
有帮助
没帮助