Skip to content

Instantly share code, notes, and snippets.

@jskripsky
Created August 15, 2012 06:34
Show Gist options
  • Save jskripsky/3357123 to your computer and use it in GitHub Desktop.
Save jskripsky/3357123 to your computer and use it in GitHub Desktop.
Dump type descriptions for given dll
#!/bin/bash
for type in $(monop -r:HotFeet.SCM.DB.dll | grep "$HotFeet\.SCM\.DB\."); do monop -d -r:HotFeet.SCM.DB.dll $type >/tmp/scm/$(echo $type | cut -c 16-).cs; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment