I've done a fair share of googling and I've found some rather complex solutions. I feel as though there must be something simpler.
Let's say I have
./1.txt
./2.txt
./more/3.txt
./more/4.txt
./more/even-more/5.txt
I'd like to rename anything .txt to .info
so
find . -type f -name "*.txt"
.........then what?
EDIT: Pure bash would be preferred