Skip to content

Instantly share code, notes, and snippets.

@sugar84
Created May 4, 2011 09:02
Show Gist options
  • Save sugar84/954958 to your computer and use it in GitHub Desktop.
Save sugar84/954958 to your computer and use it in GitHub Desktop.
search perl modules
for I in `perl -le 'print for @INC'`; do RES=`ls -l $I | grep AnyEvent`; if [[ $RES ]]; then echo $I; echo $RES; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment