Results 1 to 4 of 4

Thread: Batch renaming files

  1. #1
    Join Date
    Dec 2013
    Beans
    32
    Distro
    Ubuntu 14.04 Trusty Tahr

    Exclamation Batch renaming files

    For me to be able to upload pics to eBay I have to change all the images from .JPG (upercase) to .jpg (lowercase). Becuase I list alot on eBay, I need to do this often, is there any way I can do this faster? Any help is apprectiated.
    Last edited by willzhigaylo; December 27th, 2013 at 12:51 AM.

  2. #2
    Join Date
    Aug 2006
    Beans
    13,354
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: Batch renaming files


  3. #3
    Join Date
    Feb 2007
    Location
    Romania
    Beans
    Hidden!

    Re: Batch renaming files

    You can use one of the GUI tools like:

    gprename
    purrr
    pyrenamer
    gwenrename
    thunar (file manager)
    gnome-commander (file manager)
    krename

    Or if you want to do it in the CLI, then in Ubuntu, you can try the Perl based rename utility:
    Code:
    cd path/to/dir
    prename --no-act 's/\.JPG$/.jpg/' *.JPG
    If you are looking for a more portable code or want to rename files recursively, then check out BashFAQ 030 (link in my signature).

  4. #4
    Join Date
    Dec 2013
    Beans
    32
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Batch renaming files

    Thanks that helped!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •