批处理 合并多个文本内容并保存每个文本对应的名字 10
多个文本文件,acc.txt内容:1+1=2boot.txt内容1+2=32+2=4cool.txt内容2+3=53+3=6合并后这样acc1+1=2boot1+2=32...
多个文本文件,
acc.txt 内容:
1+1=2
boot.txt内容
1+2=3
2+2=4
cool.txt内容
2+3=5
3+3=6
合并后这样
acc
1+1=2
boot
1+2=3
2+2=4
cool
2+3=5
3+3=6 展开
acc.txt 内容:
1+1=2
boot.txt内容
1+2=3
2+2=4
cool.txt内容
2+3=5
3+3=6
合并后这样
acc
1+1=2
boot
1+2=3
2+2=4
cool
2+3=5
3+3=6 展开
1个回答
展开全部
(for /f "delims=" %%a in ('dir /a-d/s/b *.txt') do echo %%~na&type "%%a"&echo;)>"out.log"
追问
请问合并后的文本不要显示路径可以吗
C:\Users\Administrator\Desktop\新建文件夹>echo ok & type "C:\Users\Administrator\Desktop\新建文件夹\ok.txt" & echo;
ok
2018/1/1 6573.75
2018/2/10 583.12
2018/2/11 5248.11
2018/3/10 5671.99
2018/3/10 78.6
把前面两行路径去掉,直接从
ok.txt
2018/1/1 6573.75
2018/2/10 583.12
2018/2/11 5248.11
2018/3/10 5671.99
2018/3/10 78.6
追答
@echo off
(for /f "delims=" %%a in ('dir /a-d/s/b *.txt') do echo %%~na&type "%%a"&echo;)>"out.log"
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询