Created
April 26, 2013 02:18
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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