Skip to content

Instantly share code, notes, and snippets.

@henix
Created April 26, 2013 02:18
Show Gist options
  • Save henix/5464700 to your computer and use it in GitHub Desktop.
Save henix/5464700 to your computer and use it in GitHub Desktop.
./mklibclass > libclass ; gvim libclass ; /\.ClassName # find full class name in your project, for vimer writing scala
#!/bin/sh
find . -name "*.jar" | xargs -L 1 unzip -l | grep 'class$' | awk '{print $4}' | sed -e 's/\.class$//g' -e 's/\//./g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment