epogrebnyak / haskell-intro

Seven classes on Haskell and a follow-up reading list
http://tinyurl.com/haskell-intro
53 stars 6 forks source link

shell script to count http entries in a file #14

Open epogrebnyak opened 4 years ago

epogrebnyak commented 4 years ago
grep -Eoi '<a [^>]+>' README.md | grep -Eo 'href="[^\"]+"' |  grep -Eo '(http|https)://[^/"]+'

must exclude links to this repo and some others

epogrebnyak commented 4 years ago

use as an example for haskell program?