linux文件夹内文件复制,如何排除某个文件

linux文件夹内文件复制,如何排除某个文件,第1张

Linux中在复制一个目录时排除其中的某个文件,方法案链颤例如下:

#新建一仿稿个test1目录

[oracle@prod ~]$ mkdir test1

#新建一个test2目录

[oracle@prod ~]$ mkdir test2

#进入test1目录棚大败

[oracle@prod ~]$ cd test1

#在test1目录新建5个txt文件

[oracle@prod test1]$ touch 1.txt 2.txt 3.txt 4.txt zhidao.txt

#然后复制test1目录文件到test2目录,排除zhidao.txt

[oracle@prod test1]$cp `ls | grep -v zhidao.txt | xargs` ../test2

#进入test2目录

[oracle@prod test1]$ cd ../test2

#查看test2目录文件,已经排除了zhidao.txt

[oracle@prod test2]$ ls -lt

total 0

-rw-r--r-- 1 oracle oinstall 0 Mar 10 17:20 1.txt

-rw-r--r-- 1 oracle oinstall 0 Mar 10 17:20 2.txt

-rw-r--r-- 1 oracle oinstall 0 Mar 10 17:20 3.txt

-rw-r--r-- 1 oracle oinstall 0 Mar 10 17:20 4.txt

先扫描所有的子文件,判断文件名是否包含你不需要的文件

“耐型先扫描所有的子文件,判断文件答段名是否包含你不需要的文件,虽然麻烦点,但也不是很难 现在来个高端的,直接上代码 @echo offecho 排除以下文件:echo 78.txt>exclude.txtecho 85.txt>>exclude.txtxcopy /y /e /s /h D:\用户目录\Desktop\A D:\用户目录\Desktop\B /exclude:exclude.txtdel exclude.txtecho 复制完成”

批处理(Batch),也称为批处理脚本。顾名思义,批处理就是对某对象进行批量的处理,通常被认为是一种简化的脚本语言,它应用于昌举猜DOS和Windows系统中。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12298334.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存