标题: [文本处理] 求解echo %%a >>a.txt为什么不能将%%a里的内容传递到a.txt [打印本页]
作者: lihui612ld 时间: 2019-8-12 23:48 标题: 求解echo %%a >>a.txt为什么不能将%%a里的内容传递到a.txt
for /f "delims=: tokens=2" %%a in ('ipconfig /all^|find "物理地址"') do (echo %%a >>a.txt
)
pause
请问下为什么这里的ECHO %%a >>a.txt 无法将内容导入到a.txt
作者: Batcher 时间: 2019-8-13 08:25
复制代码
执行这个命令,把生成的b.txt压缩传上来我试试。
作者: lihui612ld 时间: 2019-8-13 08:34
附件中就是我运行ipconfig /all 保存的信息
作者: Batcher 时间: 2019-8-13 08:48
回复 3# lihui612ld
我这边测试没有问题,你把 >>a.txt 去掉再执行代码可以正常显示吗?
作者: hlzj88 时间: 2019-8-13 08:50
- for /f "delims=: tokens=2" %%a in ('ipconfig /all^|findstr /i "物理地址 physical"') do echo %%a >>a.txt
复制代码
我用的findstr 。内容有
作者: lihui612ld 时间: 2019-8-13 09:58
回复 4# Batcher
去掉>>a.txt功能正常,可以显示三个MAC地址,就是奇怪为什么不能成功>>a.txt
作者: lihui612ld 时间: 2019-8-13 09:59
回复 5# hlzj88
我来试试findstr
作者: lihui612ld 时间: 2019-8-13 10:00
本帖最后由 lihui612ld 于 2019-8-13 10:01 编辑
回复 6# lihui612ld
用findstr还真行 ,可是这是为什么findstr可以而find不行呢
作者: Batcher 时间: 2019-8-13 11:22
回复 8# lihui612ld
bat脚本不要命名为find.bat
试试test.bat
作者: lihui612ld 时间: 2019-8-13 11:30
回复 9# Batcher
脚本的命名是1.bat ,这个跟名字应该是没有关系的
作者: /zhqsystem/zhq 时间: 2019-8-13 14:02
查看是否有权限写入文本至%cd%路径,在NT6+系统路径默认是无权限写入的,建议用%temp%路径读取和写入,NT6.1.7601下测试是正常的
作者: Batcher 时间: 2019-8-13 15:18
回复 10# lihui612ld
那确实挺奇怪的,照理说find和findstr跟能否写入文件是没有关系的。
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |