Board logo

标题: [系统相关] 【已解决】批处理命令findstr如何精确查找? [打印本页]

作者: zhaokeistc    时间: 2015-6-28 15:32     标题: 【已解决】批处理命令findstr如何精确查找?

想只查到红框的那条数据,有什么参数可以实现吗,用了/X和/R都不行,求大神指导。

不想用for实现,可以吗?
作者: pcl_test    时间: 2015-6-28 17:28

tasklist|findstr /c:" 360 "
如果是想通过进程名获取pid,可用wmic
作者: DAIC    时间: 2015-6-28 17:41

  1. tasklist | findstr /c:" 360 Console"
复制代码

作者: CrLf    时间: 2015-6-29 01:45

tasklist 自带筛选开关
  1. tasklist /fi "pid eq 360"
复制代码

作者: zhaokeistc    时间: 2015-6-30 11:04

回复 2# pcl_test


    不是,只是想确认一下这个pid的进程存不存在
作者: zhaokeistc    时间: 2015-6-30 11:11

回复 4# CrLf


    我是想确认这个pid的进程是否存在,用你这个命令,没有这个pid的时候会报“信息: 没有运行的任务匹配指定标准。”

但它的%errorlevel%仍然是0,不好判断啊。
作者: zhaokeistc    时间: 2015-6-30 11:16

回复 3# DAIC


    /c:  是什么意思啊    我看tasklist /?里面没有这个参数啊
作者: DAIC    时间: 2015-6-30 11:17

回复 7# zhaokeistc


    因为 /c: 是 findstr 命令的参数
作者: flyinnet9    时间: 2015-6-30 11:20

tasklist /fi "pid eq 360" |find "360" 2>nul && echo Yes || echo No
作者: zhaokeistc    时间: 2015-7-1 17:14

多谢各位大神
作者: chouxia    时间: 2015-7-2 08:18

tasklist /fi "pid eq 360" |find "360" 2>nul && echo Yes || echo No
flyinnet9 发表于 2015-6-30 11:20



    360" 2 这个2是什么意思?
作者: Batcher    时间: 2015-7-3 09:35

回复 11# chouxia


    2>nul 屏蔽报错信息




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