如果還是不行,給你乙個vbscript的程式(windows的指令碼)
function grep(ssearch, sfilename)
set fso = createobject("scripting.filesystemobject")
set fp = fso.opentextfile(sfilename, 1, false)
if err.number <> 0 then
wscript.echo ("error " & cstr(err.number) & " " & err.description)
exit function
end if
i = 1
count = 0
do until fp.atendofstream
sline = fp.readline
if sline<>vbnull then
z = instrrev(sline, ssearch)
if z>0 then
'wscript.echo i & " : " & sline
count = count + 1
end if
end if
i = i + 1
loop
grep = count
end function
set args = wscript.arguments
count = grep(args(0), args(1))
wscript.echo "total count = " & count
儲存成 grep.vbs,放在系統環境變數path的某個路徑下,或者是當前路徑,
然後執行
也能出結果。
-----------------------------------
查詢統計
@echo off
netstat -an|find "8082"|find "established" > c:\tongji.txt
for /f %%a in (' find /c /v "" ^<"c:\tongji.txt" ') do set n=%%a
echo
grep "established" c:\tongji.txt
windows下CoffeeScript 的實現
安裝coffeescript,需要先安裝node.js和npm。在mac 和 linux 的環境下,coffeescript的安裝是相當容易的。比較複雜的呢是在windows的環境下安裝。所以我們著重講一下在windows環境下的安裝方式。安裝完node 包括npm 後,我們到programm fi...
windows下python twisted庫安裝
方式 一 命令列中執行easy instal twisted 提示 unable to find vcvarsall.bat 的錯誤,這是因為twisted源 安裝方式,需要c編譯環境,如果有安裝vc開發環境就可以通過 plain view plain copy 首先安裝mingw,在mingw的安...
Windows下chromedriver安裝與配置
chromedriver 谷歌瀏覽器驅動 谷歌瀏覽器 幫助 關於 chrome 注意 chromedriver 的版本要和 chrome 瀏覽器相對應,不然很多功能不能用 從selenium中匯入webdriver from selenium import webdriver 建立乙個瀏覽器驅動 e...