added haskell the hard way, still work to do

This commit is contained in:
Yann Esposito (Yogsototh) 2019-12-15 01:34:58 +01:00
parent 152c47b862
commit f76b208dd9
Signed by untrusted user who does not match committer: yogsototh
GPG Key ID: 7B19A4C650D59646
2 changed files with 3422 additions and 1 deletions

View File

@ -15,7 +15,7 @@ retrieve_classes_in_css () {
classes=( $( {retrieve_classes_in_html; retrieve_classes_in_css}| \
egrep "^CLASS: [^ ]*$" |\
sort -u | \
awk 'length($2)>2 && $2 != "web-file-size" {print length($2),$2}'|\
awk 'length($2)>2 && $2 !~ /(web-file-size|example|src)/ {print length($2),$2}'|\
sort -rn | \
awk '{print $2}') )

File diff suppressed because it is too large Load Diff