Skip to content

Instantly share code, notes, and snippets.

@afrontend
Last active November 18, 2019 04:55
Show Gist options
  • Save afrontend/e5833132f33ecb891946de46be0c5678 to your computer and use it in GitHub Desktop.
Save afrontend/e5833132f33ecb891946de46be0c5678 to your computer and use it in GitHub Desktop.
https://www.staticgen.com/ 의 목록 중에 가장 많이 언급된 단어 찾기
curl -s https://www.staticgen.com/ \
| hgrep -t "p[class*=Card__]" \
| sed -e 's/\s\+/\n/g' \
| sed -e 's/\.//g' \
| sed -e 's/,//g' \
| tr [:upper:] [:lower:] \
| sort \
| uniq -c \
| sort -r \
| head -10
@afrontend
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment