With big help from here, I have soon converted all my jpg files to gif (thanks again ALOT)
but when I was looking around at my files I have noticed that some folder I have added a zero to the filenames.
The filename standard I trying to have is 001.gif, 002.gif.... but some of the files have 01.gif, 02.gif and so on and that is not good for me.
So with the code, I got from convert that I find something that calls globe star I was ready to see if I can fix that for myself :)
but nothing happened when I run the code. Right now I just try to see if I can convert the file that has JPG
for f in /lib/**/*jpg; do
if [ "${#f}" -eq 2 ]; then
mv "$f" "0$f"
fi
done