1. 程式人生 > >windows下的grep命令——findstr

windows下的grep命令——findstr

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