Skip to content

Instantly share code, notes, and snippets.

@qinshulei
Last active August 29, 2015 14:05
Show Gist options
  • Save qinshulei/05396784b6a7f72cfbef to your computer and use it in GitHub Desktop.
Save qinshulei/05396784b6a7f72cfbef to your computer and use it in GitHub Desktop.
rm all .svn from svn
# Recursively remove all .svn directories
find . -name .svn -print0 | xargs -0 rm -rf
#!/bin/bash
wc -l `find ../src/main -regex ".*\.\(java\|html\|js\|css\)" -not -path "../src/main/webapp/assets/bower_components/*" -not -path "../src/main/webapp/assets/components/*"`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment