github.com/danbrough/mobile@v0.0.3-beta03/rename.sh (about)

     1  #!/bin/bash
     2  
     3  cd `dirname $0`
     4  find \( -type d -name .git -prune \) -o -type f -print0 | \
     5  	xargs -0 sed -i  's|github.com/danbrough/mobile|github.com/danbrough/mobile|g'
     6  
     7  
     8