I would like to replace the "Screenshot" substring with "Ss" for all the files in the current directory (if easy, add for subfolders). Currently I have this code, but needs to be completed/replaced:
#!/bin/bash
for f in *; do
echo "${f}" | cut -c1-10
done
Thank you