Created
February 28, 2011 03:32
-
-
Save while0pass/846899 to your computer and use it in GitHub Desktop.
Меняем в git-репозитории у всех файлов расширение txt на hip
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
for i in $(find ./ -type f -name *.txt); do git mv $i ${i%txt}hip; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment