Skip to content

Instantly share code, notes, and snippets.

@while0pass
Created February 28, 2011 03:32
Show Gist options
  • Save while0pass/846899 to your computer and use it in GitHub Desktop.
Save while0pass/846899 to your computer and use it in GitHub Desktop.
Меняем в git-репозитории у всех файлов расширение txt на hip
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