2 Responses

  1. PatrickMc
    PatrickMc August 21, 2009 at 3:42 pm | | Reply

    Nice article. In windows, I use biterscripting ( http://www.biterscripting.com ) for renaming. It is a general purpose scripting language, rather easy to learn.

    For example, to change the extension from mp4 to m4v, the following code snippet can be used.

    var str list ; lf -n “*.mp4″ > $list
    while ($list “”)
    do
    var str file, newname ; lex “1″ $list > $file ; sal -c -p “^.mp4^” “.mv4″ $file > $newname
    system move $file $newname
    done

    Patrick

Leave a Reply