Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


How to bulk rename images? any tool or ubuntu command?
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

How to bulk rename images? any tool or ubuntu command?

I have 100 images & i want to rename with list of keywords.

For example:
image1.jpg = california.jpg
myshow.jpg = florida.jpg
bookme.jpg = miami.jpg

How can I do this. Any command like tool???

Comments

  • You can always generate the command on spreadsheet / excel and paste it on the terminal.

  • I'm not good at programming. Can you send me any guide or process pls..??

  • LeviLevi Member

    simple bash script would do it? Some thing like this:

    #!/bin/bash
    
    list1="1 2 3"
    list2="a b c"
    
    echo $list1 | sed 's/ /\n/g' > /tmp/a.$$
    echo $list2 | sed 's/ /\n/g' > /tmp/b.$$
    
    paste /tmp/a.$$ /tmp/b.$$ | while read item1 item2; do
        mv $item1.jpg $item2.jpg
    done
    

    This is dirty as hell but basically you need to do 'while' loop on 2 lists.

  • @LTniger do you have any bash script to download featured thumbnail images of a video site page url?? I have messaged you. Pls. reply back when you are free :smile:

Sign In or Register to comment.