view test.hs @ 3056:623844b98809

<nooodl> fetch http://bpaste.net/raw/cvYcEn3Sfi9wZ4cOjCIi/
author HackBot
date Wed, 05 Jun 2013 19:16:03 +0000
parents 831ffc1f8007
children
line wrap: on
line source

import Data.Maybe (catMaybes)
import Data.List (group, sort, stripPrefix)
main = mapM_ putStrLn . map (\s -> head s ++ " occurs->" ++ show (length s)) . group . sort . catMaybes . map (stripPrefix "username:" . (!!2) . words) . lines =<< getContents