ref: 5bcc30b7813a7bd15717f44d57cfb0dcbab3c87e dir: /Tools/Count.hs/
import System.Environment import Data.List main = do [pat, fn] <- getArgs file <- readFile fn let n = length $ filter (isPrefixOf pat) (tails file) print n