Skip to content

Instantly share code, notes, and snippets.

@rcanepa
Created September 8, 2016 23:37
Show Gist options
  • Save rcanepa/4c16c43e91eee90f10138e8625afcdc1 to your computer and use it in GitHub Desktop.
Save rcanepa/4c16c43e91eee90f10138e8625afcdc1 to your computer and use it in GitHub Desktop.
Find references to namespace alias http on all namespaces
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