Skip to content

Instantly share code, notes, and snippets.

@ataube
Created November 23, 2012 09:44
Show Gist options
  • Save ataube/4134796 to your computer and use it in GitHub Desktop.
Save ataube/4134796 to your computer and use it in GitHub Desktop.
Svn Batch Rename
#!/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