Rename *.jpeg.png to *.png in linux
Rename *.jpeg.png to *.png in linux Read More »
I always use this way to rename .png.png to .png [code lang="shell"] find ./ -name ‘*.png.png’ -type f \ -exec sh -c ‘mv {} ./$(basename -s .png.png {}).png’ \; [/code]
How to rename rename *.png.png to *.png in Mac OS terminal Read More »
I want to mass rename hundred of filenames like filename 001.jpg to filename-001.jpg … … … filename 099.jpg to filename-099.jpg I use this command to rename all in few seconds in my MacBook Pro. I think it is fine to run in any linux. [code lang="bash"] for f in \ ; do mv "$f" "${f//
Fastest way to rename filenames with space to dash in linux Read More »