View Single Post
Old 02-15-2011, 11:37 AM  
fris
Too lazy to set a custom title
 
fris's Avatar
 
Industry Role:
Join Date: Aug 2002
Posts: 55,307
Quote:
Originally Posted by Juicy D. Links View Post
Pussy lips i did it loloolololl

Code:
  i=1; 
    shopt -s nullglob;
    for f in *.jpg *.gif *.png *.jpeg *.JPG *.JPEG *.GIF; do
        EXT="${f##*.}"
        EXT=${EXT,,}
        EXT=${EXT/jpeg/jpg}
        mv -- "$f" "$i.${EXT}";
        ((i++));
    done
could shorten it by doing for f in *.{jpg,jpeg,JPG,JPEG,gif,GIF,png,PNG};
__________________
Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.


WP Stuff
fris is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote