windows下的grep命令——findstr

时间:2021-12-29 02:55:25
windows下的类似 linux下的grep命令--findstr
   
    经常用 linux下的grep命令,比如:
   
    netstat -an|grep 1521
   
    其实windows下也有一个类似的命令findstr,比如:
   

    C:\Windows\system32>netstat -an|findstr 1521


  当然windows下还有一个find命令,比如:
   
    C:\Windows\system32>netstat -an|find "1521"


两个命令的区别是find需要用引号引起来


转自:http://windows.chinaitlab.com/administer/892816.html