rename file names – replace source char with dest char

ref – http://stackoverflow.com/questions/1806868/linux-replacing-spaces-in-the-file-names

for f in *.png; do echo mv “$f” “${f/_*_/_}”; done