-
-
Save Laxman-SM/119f068080f3bda4df121ecfd4ebef5d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # little monstruosity i wrote, probably done with 10x fewer characters with sed | |
| # and maybe 5x fewer characters with ruby, but python is still my native language :) | |
| git status | grep \.svn | python -c "import re, sys; sys.stdout.write('\n'.join(set([res[0] for res in [re.findall('file:\s+(.*?\.svn)', line) for line in sys.stdin.readlines()] if len(res) > 0])));" | python -c "import os, sys; [os.system('git rm -rf %s' % line) for line in sys.stdin.readlines()]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment