Board logo

标题: [文本处理] 批处理怎样用find查找两个关键字? [打印本页]

作者: xiang1771    时间: 2021-10-12 19:36     标题: 批处理怎样用find查找两个关键字?

我想用systeminfo命令查找并显示里面的2行数据。例如“主机名”和“系统类型”
请问是这么写吗?
  1. @echo off
  2. systeminfo | find "主机名"——???后面怎么写“系统类型”
  3. pause>nul
  4. exit
复制代码

作者: Batcher    时间: 2021-10-12 21:55

回复 1# xiang1771
  1. systeminfo | findstr /i /c:"主机名" /c:"系统类型"
复制代码

作者: xiang1771    时间: 2021-10-12 21:55

回复 2# Batcher


    感谢大佬!
作者: qixiaobin0715    时间: 2021-10-13 09:45

回复 2# Batcher
findstr还能这样写,又学到一招。
这样应当也行吧:
  1. findstr /i /c:"Good bye" /c:"Good lucky"
复制代码
我觉得会有用的。
作者: locoman    时间: 2021-10-13 16:40

回复 2# Batcher


    能否查找某段的所有文本吗??
如这样一段文本:

第一段:
a1
b1
c1
d1
……

第二段:
a2
b2
c2
d2
……

第三段:
a3
b3
c3
d3
……

我想查找提取 第二段至第三段之间的所有文本出来:
a2
b2
c2
d2
……
作者: qixiaobin0715    时间: 2021-10-13 16:43

findstr "[a-z]2" a.txt
作者: Batcher    时间: 2021-10-13 18:58

回复 5# locoman


    find命令本身是逐行处理的,它没有自带分段的功能,只能根据真实文本中的规律通过其它途径来实现。




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2