Created
November 23, 2012 09:44
-
-
Save ataube/4134796 to your computer and use it in GitHub Desktop.
Svn Batch Rename
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/bash | |
for i in *.tpl; do | |
j=`echo $i | sed 's/.tpl/.hbs/g'`; | |
svn ren $i $j; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment