Linux命令之cp

简介: Linux命令 cp

linux命令之cp

1.cp介绍
linux命令cp是用来复制文件或目录

2.cp用法
cp [参数] scr dest

cp常用参数
参数 说明
-a 保留文件的属性,进行递归复制,相当于-pdr
-f 强制复制,不提示
3.实例
3.1.复制1.txt文件至ztj目录
命令:

cp -a 1.txt ztj/

[root@centos79-3 ~]# ls 1.txt
1.txt
[root@centos79-3 ~]# ls -l 1.txt
-rw-r--r-- 1 root root 4 Sep 16 11:24 1.txt
[root@centos79-3 ~]# cp -a 1.txt ztj/
[root@centos79-3 ~]# cd ztj/
[root@centos79-3 ztj]# ls -l 1.txt
-rw-r--r-- 1 root root 4 Sep 16 11:24 1.txt
[root@centos79-3 ztj]#
3.2.强制复制文件到目录
命令:

cp -f 1.txt ztj/

[root@centos79-3 ~]# echo 2222 >>1.txt
[root@centos79-3 ~]# cat 1.txt
qqq
2222
[root@centos79-3 ~]# ls -l 1.txt
-rw-r--r-- 1 root root 9 Sep 16 11:39 1.txt
[root@centos79-3 ~]# cp -f 1.txt ztj/
cp: overwrite ‘ztj/1.txt’? y
[root@centos79-3 ~]# cd ztj/
[root@centos79-3 ztj]# ls -l 1.txt
-rw-r--r-- 1 root root 9 Sep 16 11:39 1.txt

————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/132916594

目录
相关文章
|
19天前
|
运维 安全 Linux
Linux中传输文件文件夹的10个scp命令
【10月更文挑战第18天】本文详细介绍了10种利用scp命令在Linux系统中进行文件传输的方法,涵盖基础文件传输、使用密钥认证、复制整个目录、从远程主机复制文件、同时传输多个文件和目录、保持文件权限、跨多台远程主机传输、指定端口及显示传输进度等场景,旨在帮助用户在不同情况下高效安全地完成文件传输任务。
131 5
|
19天前
|
Linux
Linux系统之expr命令的基本使用
【10月更文挑战第18天】Linux系统之expr命令的基本使用
62 4
|
6天前
|
缓存 监控 Linux
|
9天前
|
Linux Shell 数据安全/隐私保护
|
10天前
|
域名解析 网络协议 安全
|
16天前
|
运维 监控 网络协议
|
17天前
|
监控 Linux Shell
|
2天前
|
监控 Linux 开发者
如何在 Linux 中优雅的使用 head 命令,用来看日志简直溜的不行
`head` 命令是 Linux 系统中一个非常实用的工具,用于快速查看文件的开头部分内容。本文介绍了 `head` 命令的基本用法、高级用法、实际应用案例及注意事项,帮助用户高效处理文件和日志,提升工作效率。
15 7
|
1天前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
12 5
|
20天前
|
Unix Linux
Linux | Rsync 命令:16 个实际示例(下)
Linux | Rsync 命令:16 个实际示例(下)
30 3
Linux | Rsync 命令:16 个实际示例(下)