in reply to Re^2: renaming files from a tab delimited list
in thread renaming files from a tab delimited list

perlintro will give you all the information and example code you need to open and read the file containing your tab delimited list. Inside the loop that reads that file line by line, you could use split to split each line into its components, and then rename to rename the files. Try writing some code, posting it here (following the guidelines in How do I post a question effectively?), and I'm sure someone will be happy to help.

  • Comment on Re^3: renaming files from a tab delimited list