+ Reply to Thread
Results 1 to 2 of 2

Thread: Rename files

  1. #1
    xadmin Guest

    Rename files

    Rename all ".JPG" files to ".jpg"

  2. #2
    xadmin Guest

    Re: Rename files

    Code:
    for i in *.JPG; do mv "$i" "${i/.JPG}".jpg; done

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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