請問有指令可以查出文字檔裡某字串的數量嗎?
舉例:
123.txt內容如下
red 100
blue 200
white 100
yollow 100
有辦法透過cmd指令列印出100有3個嗎? (顯示3而不是顯示全部的100)
用find指令
find /C "100" < 123.txt
C:\>copy con 123.txt
red 100
blue 200
white 100
yollow 100
^Z
複製了 1 個檔案。
C:\>find /c "100" 123.txt
---------- 123.TXT: 3
C:\>