Created
September 8, 2016 23:37
-
-
Save rcanepa/4c16c43e91eee90f10138e8625afcdc1 to your computer and use it in GitHub Desktop.
Find references to namespace alias http on all namespaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -iname "*.clj" | | |
xargs grep -ho -e "http\/.*" | | |
cut -d ' ' -f 1 | | |
sed 's/)//g' | | |
sort | | |
uniq | |
http/bad-request | |
http/conflict | |
http/content-type | |
http/created | |
http/forbidden | |
http/found | |
http/no-content | |
http/not-found | |
http/ok | |
http/unauthorized | |
http/unprocessable-entity | |
http/unsupported-media-type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment