Skip to content

Instantly share code, notes, and snippets.

@brendanzagaeski
Created August 15, 2013 00:12
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 brendanzagaeski/6237091 to your computer and use it in GitHub Desktop.
Save brendanzagaeski/6237091 to your computer and use it in GitHub Desktop.
Some command line piping using `monodis` to find files that reference outdated, unsigned `monotouch` assemblies.
find . -iname '*.dll' | while read FILE; do monodis --assemblyref "$FILE" | sed -n '/monotouch/ { N; N; p; }' | grep -iq 'Zero sized public key' && echo "$FILE"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment