I want to add a suffix to all files in the current directory.
Here's what I still haven't looked for stackoverflow and Google (and messed around a bit), but it continues to fail. I want to add line 3.6.16 to all .png files in my directory. I can make part of the prefix, but my suffix fails (I guess due to the extension).
Using bash:
for item in *.png; do mv "$file" "${file}_3.6.14.png"; done
bash
user1757703
source share