Skip to content

Instantly share code, notes, and snippets.

@ustun
Created August 17, 2016 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ustun/03d88a30e158fe5c714d9d002b62fa42 to your computer and use it in GitHub Desktop.
Save ustun/03d88a30e158fe5c714d9d002b62fa42 to your computer and use it in GitHub Desktop.
ag '^[ \t]+from ' questions | grep -v django | grep -v vendor | grep -v 'from questions'
@ustun
Copy link
Author

ustun commented Aug 17, 2016

ag '^[ \t]+from ' questions | grep -v django | grep -v vendor | grep -v 'from questions' | awk 'BEGIN {FS="from"} {print $2;} ' | awk 'BEGIN {FS="."} {print $1}' | sort | uniq

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